Created
January 9, 2019 11:32
-
-
Save dmitryhd/c40d46472013a75ff161ee810bc8f018 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" standalone="no"?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<svg version="1.1" width="1200" height="326" onload="init(evt)" viewBox="0 0 1200 326" 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"> | |
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; } | |
</style> | |
<script type="text/ecmascript"> | |
<![CDATA[ | |
var details, searchbtn, matchedtxt, svg; | |
function init(evt) { | |
details = document.getElementById("details").firstChild; | |
searchbtn = document.getElementById("search"); | |
matchedtxt = document.getElementById("matched"); | |
svg = document.getElementsByTagName("svg")[0]; | |
searching = 0; | |
} | |
// mouse-over for info | |
function s(node) { // show | |
info = g_to_text(node); | |
details.nodeValue = "Function: " + info; | |
} | |
function c() { // clear | |
details.nodeValue = ' '; | |
} | |
// ctrl-F for search | |
window.addEventListener("keydown",function (e) { | |
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
e.preventDefault(); | |
search_prompt(); | |
} | |
}) | |
// functions | |
function find_child(parent, name, attr) { | |
var children = parent.childNodes; | |
for (var i=0; i<children.length;i++) { | |
if (children[i].tagName == name) | |
return (attr != undefined) ? children[i].attributes[attr].value : children[i]; | |
} | |
return; | |
} | |
function orig_save(e, attr, val) { | |
if (e.attributes["_orig_"+attr] != undefined) return; | |
if (e.attributes[attr] == undefined) return; | |
if (val == undefined) val = e.attributes[attr].value; | |
e.setAttribute("_orig_"+attr, val); | |
} | |
function orig_load(e, attr) { | |
if (e.attributes["_orig_"+attr] == undefined) return; | |
e.attributes[attr].value = e.attributes["_orig_"+attr].value; | |
e.removeAttribute("_orig_"+attr); | |
} | |
function g_to_text(e) { | |
var text = find_child(e, "title").firstChild.nodeValue; | |
return (text) | |
} | |
function g_to_func(e) { | |
var func = g_to_text(e); | |
// if there's any manipulation we want to do to the function | |
// name before it's searched, do it here before returning. | |
return (func); | |
} | |
function update_text(e) { | |
var r = find_child(e, "rect"); | |
var t = find_child(e, "text"); | |
var w = parseFloat(r.attributes["width"].value) -3; | |
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); | |
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3; | |
// Smaller than this size won't fit anything | |
if (w < 2*12*0.59) { | |
t.textContent = ""; | |
return; | |
} | |
t.textContent = txt; | |
// Fit in full text width | |
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) | |
return; | |
for (var x=txt.length-2; x>0; x--) { | |
if (t.getSubStringLength(0, x+2) <= w) { | |
t.textContent = txt.substring(0,x) + ".."; | |
return; | |
} | |
} | |
t.textContent = ""; | |
} | |
// zoom | |
function zoom_reset(e) { | |
if (e.attributes != undefined) { | |
orig_load(e, "x"); | |
orig_load(e, "width"); | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_reset(c[i]); | |
} | |
} | |
function zoom_child(e, x, ratio) { | |
if (e.attributes != undefined) { | |
if (e.attributes["x"] != undefined) { | |
orig_save(e, "x"); | |
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10; | |
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3; | |
} | |
if (e.attributes["width"] != undefined) { | |
orig_save(e, "width"); | |
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio; | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_child(c[i], x-10, ratio); | |
} | |
} | |
function zoom_parent(e) { | |
if (e.attributes) { | |
if (e.attributes["x"] != undefined) { | |
orig_save(e, "x"); | |
e.attributes["x"].value = 10; | |
} | |
if (e.attributes["width"] != undefined) { | |
orig_save(e, "width"); | |
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2); | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_parent(c[i]); | |
} | |
} | |
function zoom(node) { | |
var attr = find_child(node, "rect").attributes; | |
var width = parseFloat(attr["width"].value); | |
var xmin = parseFloat(attr["x"].value); | |
var xmax = parseFloat(xmin + width); | |
var ymin = parseFloat(attr["y"].value); | |
var ratio = (svg.width.baseVal.value - 2*10) / width; | |
// XXX: Workaround for JavaScript float issues (fix me) | |
var fudge = 0.0001; | |
var unzoombtn = document.getElementById("unzoom"); | |
unzoombtn.style["opacity"] = "1.0"; | |
var el = document.getElementsByTagName("g"); | |
for(var i=0;i<el.length;i++){ | |
var e = el[i]; | |
var a = find_child(e, "rect").attributes; | |
var ex = parseFloat(a["x"].value); | |
var ew = parseFloat(a["width"].value); | |
// Is it an ancestor | |
if (0 == 0) { | |
var upstack = parseFloat(a["y"].value) > ymin; | |
} else { | |
var upstack = parseFloat(a["y"].value) < ymin; | |
} | |
if (upstack) { | |
// Direct ancestor | |
if (ex <= xmin && (ex+ew+fudge) >= xmax) { | |
e.style["opacity"] = "0.5"; | |
zoom_parent(e); | |
e.onclick = function(e){unzoom(); zoom(this);}; | |
update_text(e); | |
} | |
// not in current path | |
else | |
e.style["display"] = "none"; | |
} | |
// Children maybe | |
else { | |
// no common path | |
if (ex < xmin || ex + fudge >= xmax) { | |
e.style["display"] = "none"; | |
} | |
else { | |
zoom_child(e, xmin, ratio); | |
e.onclick = function(e){zoom(this);}; | |
update_text(e); | |
} | |
} | |
} | |
} | |
function unzoom() { | |
var unzoombtn = document.getElementById("unzoom"); | |
unzoombtn.style["opacity"] = "0.0"; | |
var el = document.getElementsByTagName("g"); | |
for(i=0;i<el.length;i++) { | |
el[i].style["display"] = "block"; | |
el[i].style["opacity"] = "1"; | |
zoom_reset(el[i]); | |
update_text(el[i]); | |
} | |
} | |
// search | |
function reset_search() { | |
var el = document.getElementsByTagName("rect"); | |
for (var i=0; i < el.length; i++) { | |
orig_load(el[i], "fill") | |
} | |
} | |
function search_prompt() { | |
if (!searching) { | |
var term = prompt("Enter a search term (regexp " + | |
"allowed, eg: ^ext4_)", ""); | |
if (term != null) { | |
search(term) | |
} | |
} else { | |
reset_search(); | |
searching = 0; | |
searchbtn.style["opacity"] = "0.1"; | |
searchbtn.firstChild.nodeValue = "Search" | |
matchedtxt.style["opacity"] = "0.0"; | |
matchedtxt.firstChild.nodeValue = "" | |
} | |
} | |
function search(term) { | |
var re = new RegExp(term); | |
var el = document.getElementsByTagName("g"); | |
var matches = new Object(); | |
var maxwidth = 0; | |
for (var i = 0; i < el.length; i++) { | |
var e = el[i]; | |
if (e.attributes["class"].value != "func_g") | |
continue; | |
var func = g_to_func(e); | |
var rect = find_child(e, "rect"); | |
if (rect == null) { | |
// the rect might be wrapped in an anchor | |
// if nameattr href is being used | |
if (rect = find_child(e, "a")) { | |
rect = find_child(r, "rect"); | |
} | |
} | |
if (func == null || rect == null) | |
continue; | |
// Save max width. Only works as we have a root frame | |
var w = parseFloat(rect.attributes["width"].value); | |
if (w > maxwidth) | |
maxwidth = w; | |
if (func.match(re)) { | |
// highlight | |
var x = parseFloat(rect.attributes["x"].value); | |
orig_save(rect, "fill"); | |
rect.attributes["fill"].value = | |
"rgb(230,0,230)"; | |
// remember matches | |
if (matches[x] == undefined) { | |
matches[x] = w; | |
} else { | |
if (w > matches[x]) { | |
// overwrite with parent | |
matches[x] = w; | |
} | |
} | |
searching = 1; | |
} | |
} | |
if (!searching) | |
return; | |
searchbtn.style["opacity"] = "1.0"; | |
searchbtn.firstChild.nodeValue = "Reset Search" | |
// calculate percent matched, excluding vertical overlap | |
var count = 0; | |
var lastx = -1; | |
var lastw = 0; | |
var keys = Array(); | |
for (k in matches) { | |
if (matches.hasOwnProperty(k)) | |
keys.push(k); | |
} | |
// sort the matched frames by their x location | |
// ascending, then width descending | |
keys.sort(function(a, b){ | |
return a - b; | |
}); | |
// 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.style["opacity"] = "1.0"; | |
pct = 100 * count / maxwidth; | |
if (pct == 100) | |
pct = "100" | |
else | |
pct = pct.toFixed(1) | |
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; | |
} | |
function searchover(e) { | |
searchbtn.style["opacity"] = "1.0"; | |
} | |
function searchout(e) { | |
if (searching) { | |
searchbtn.style["opacity"] = "1.0"; | |
} else { | |
searchbtn.style["opacity"] = "0.1"; | |
} | |
} | |
]]> | |
</script> | |
<rect x="0.0" y="0" width="1200.0" height="326.0" fill="url(#background)" /> | |
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text> | |
<text text-anchor="" x="10.00" y="309" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text> | |
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text> | |
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text> | |
<text text-anchor="" x="1090.00" y="309" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (9 samples, 0.01%)</title><rect x="988.3" y="37" width="0.1" height="15.0" fill="rgb(250,168,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="991.29" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:357 (18 samples, 0.02%)</title><rect x="931.3" y="85" width="0.2" height="15.0" fill="rgb(253,95,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.28" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:324 (12 samples, 0.01%)</title><rect x="884.0" y="165" width="0.1" height="15.0" fill="rgb(234,187,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="886.97" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:_match:329 (9 samples, 0.01%)</title><rect x="873.0" y="117" width="0.1" height="15.0" fill="rgb(229,140,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="876.01" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:add_app:192 (19 samples, 0.02%)</title><rect x="882.3" y="149" width="0.2" height="15.0" fill="rgb(237,189,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="885.28" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:600 (10 samples, 0.01%)</title><rect x="730.2" y="165" width="0.1" height="15.0" fill="rgb(208,92,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.18" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1362 (143 samples, 0.15%)</title><rect x="514.5" y="213" width="1.8" height="15.0" fill="rgb(222,51,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="517.49" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:645 (101 samples, 0.11%)</title><rect x="980.2" y="85" width="1.3" height="15.0" fill="rgb(211,198,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="983.23" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:110 (72 samples, 0.08%)</title><rect x="712.3" y="101" width="0.9" height="15.0" fill="rgb(244,161,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="715.27" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:hard_work:22 (1,802 samples, 1.91%)</title><rect x="889.4" y="149" width="22.5" height="15.0" fill="rgb(249,117,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="892.37" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >...</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_t:421 (158 samples, 0.17%)</title><rect x="1129.2" y="117" width="2.0" height="15.0" fill="rgb(243,11,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.20" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:build:215 (15 samples, 0.02%)</title><rect x="795.7" y="149" width="0.2" height="15.0" fill="rgb(212,216,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.74" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1364 (146 samples, 0.15%)</title><rect x="516.5" y="213" width="1.8" height="15.0" fill="rgb(210,193,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.47" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1396 (2,385 samples, 2.53%)</title><rect x="521.1" y="213" width="29.9" height="15.0" fill="rgb(216,107,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="524.15" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:108 (12 samples, 0.01%)</title><rect x="788.8" y="149" width="0.2" height="15.0" fill="rgb(225,127,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.80" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:_prepare_hook:682 (32 samples, 0.03%)</title><rect x="1002.3" y="149" width="0.4" height="15.0" fill="rgb(215,192,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1005.30" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:341 (564 samples, 0.60%)</title><rect x="1023.3" y="133" width="7.0" height="15.0" fill="rgb(243,165,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1026.27" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:644 (28 samples, 0.03%)</title><rect x="979.9" y="85" width="0.3" height="15.0" fill="rgb(238,15,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="982.88" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/logging/__init__.py:info:1305 (301 samples, 0.32%)</title><rect x="1169.5" y="133" width="3.7" height="15.0" fill="rgb(212,218,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.48" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (12 samples, 0.01%)</title><rect x="952.9" y="101" width="0.1" height="15.0" fill="rgb(244,12,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="955.87" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:799 (1,211 samples, 1.28%)</title><rect x="865.9" y="149" width="15.2" height="15.0" fill="rgb(215,111,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="868.95" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:554 (69 samples, 0.07%)</title><rect x="706.5" y="133" width="0.8" height="15.0" fill="rgb(232,178,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.47" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:path_qs:363 (1,080 samples, 1.14%)</title><rect x="1114.5" y="101" width="13.5" height="15.0" fill="rgb(229,165,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1117.49" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:562 (9 samples, 0.01%)</title><rect x="716.2" y="133" width="0.1" height="15.0" fill="rgb(249,170,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.19" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:369 (60 samples, 0.06%)</title><rect x="833.1" y="181" width="0.8" height="15.0" fill="rgb(238,193,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="836.13" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:get_event_loop:691 (322 samples, 0.34%)</title><rect x="694.2" y="149" width="4.0" height="15.0" fill="rgb(232,169,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="697.20" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:version:309 (29 samples, 0.03%)</title><rect x="1021.2" y="117" width="0.4" height="15.0" fill="rgb(205,61,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1024.20" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:106 (10 samples, 0.01%)</title><rect x="738.5" y="133" width="0.2" height="15.0" fill="rgb(217,25,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="741.53" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:561 (118 samples, 0.12%)</title><rect x="972.0" y="101" width="1.5" height="15.0" fill="rgb(219,83,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.99" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_add_callback:1324 (50 samples, 0.05%)</title><rect x="557.9" y="181" width="0.6" height="15.0" fill="rgb(217,140,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.89" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1416 (494 samples, 0.52%)</title><rect x="600.0" y="213" width="6.2" height="15.0" fill="rgb(240,115,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="603.02" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:596 (1,930 samples, 2.04%)</title><rect x="922.2" y="133" width="24.1" height="15.0" fill="rgb(234,73,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="925.20" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:data_received:230 (4,457 samples, 4.72%)</title><rect x="749.1" y="165" width="55.7" height="15.0" fill="rgb(221,122,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="752.06" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:454 (23 samples, 0.02%)</title><rect x="1180.7" y="181" width="0.2" height="15.0" fill="rgb(223,178,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1183.65" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:357 (14 samples, 0.01%)</title><rect x="809.6" y="133" width="0.2" height="15.0" fill="rgb(218,114,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="812.62" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:482 (72 samples, 0.08%)</title><rect x="908.1" y="117" width="0.9" height="15.0" fill="rgb(225,62,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.09" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:110 (68 samples, 0.07%)</title><rect x="943.4" y="53" width="0.8" height="15.0" fill="rgb(219,163,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="946.39" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_cancel_task:101 (341 samples, 0.36%)</title><rect x="1181.8" y="181" width="4.3" height="15.0" fill="rgb(246,144,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.80" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:50 (19 samples, 0.02%)</title><rect x="679.7" y="149" width="0.3" height="15.0" fill="rgb(253,112,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.71" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_process_events:523 (49 samples, 0.05%)</title><rect x="554.1" y="197" width="0.6" height="15.0" fill="rgb(249,193,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.12" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:data_received:250 (47 samples, 0.05%)</title><rect x="806.1" y="165" width="0.6" height="15.0" fill="rgb(213,13,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.14" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:579 (287 samples, 0.30%)</title><rect x="809.9" y="149" width="3.6" height="15.0" fill="rgb(236,135,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="812.95" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:561 (87 samples, 0.09%)</title><rect x="989.0" y="85" width="1.1" height="15.0" fill="rgb(245,168,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="991.97" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:data_received:254 (35 samples, 0.04%)</title><rect x="806.8" y="165" width="0.4" height="15.0" fill="rgb(213,161,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.81" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/signals.py:send:34 (80 samples, 0.08%)</title><rect x="1007.3" y="133" width="1.0" height="15.0" fill="rgb(222,64,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1010.25" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_weakrefset.py:add:82 (37 samples, 0.04%)</title><rect x="937.0" y="85" width="0.5" height="15.0" fill="rgb(221,223,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="940.03" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:_prepare_hook:685 (157 samples, 0.17%)</title><rect x="1002.8" y="149" width="1.9" height="15.0" fill="rgb(239,95,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1005.78" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:__init__:33 (13 samples, 0.01%)</title><rect x="838.5" y="165" width="0.2" height="15.0" fill="rgb(236,52,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="841.52" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:create_future:276 (250 samples, 0.26%)</title><rect x="698.9" y="149" width="3.1" height="15.0" fill="rgb(209,72,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.86" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:109 (12 samples, 0.01%)</title><rect x="739.0" y="133" width="0.1" height="15.0" fill="rgb(205,134,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="741.98" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:_key_from_fd:285 (96 samples, 0.10%)</title><rect x="547.1" y="181" width="1.2" height="15.0" fill="rgb(229,226,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.12" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:611 (29 samples, 0.03%)</title><rect x="949.3" y="133" width="0.4" height="15.0" fill="rgb(245,76,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="952.29" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:86 (22 samples, 0.02%)</title><rect x="851.1" y="133" width="0.2" height="15.0" fill="rgb(248,47,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.06" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:106 (14 samples, 0.01%)</title><rect x="811.9" y="117" width="0.2" height="15.0" fill="rgb(215,159,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="814.93" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:455 (183 samples, 0.19%)</title><rect x="546.1" y="197" width="2.3" height="15.0" fill="rgb(245,209,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.08" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (9 samples, 0.01%)</title><rect x="825.5" y="133" width="0.1" height="15.0" fill="rgb(236,193,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="828.52" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1405 (2,314 samples, 2.45%)</title><rect x="568.3" y="213" width="28.9" height="15.0" fill="rgb(214,158,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="571.30" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:remote:340 (15 samples, 0.02%)</title><rect x="1095.5" y="101" width="0.1" height="15.0" fill="rgb(223,9,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1098.46" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:keep_alive:100 (12 samples, 0.01%)</title><rect x="1069.4" y="165" width="0.2" height="15.0" fill="rgb(208,61,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1072.41" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:213 (288 samples, 0.31%)</title><rect x="721.3" y="149" width="3.6" height="15.0" fill="rgb(226,218,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="724.28" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_make_request:298 (16 samples, 0.02%)</title><rect x="846.4" y="165" width="0.2" height="15.0" fill="rgb(233,117,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="849.38" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:213 (125 samples, 0.13%)</title><rect x="910.3" y="101" width="1.6" height="15.0" fill="rgb(222,29,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.32" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:__new__:182 (30 samples, 0.03%)</title><rect x="803.0" y="133" width="0.4" height="15.0" fill="rgb(247,72,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="806.05" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_add_callback:1320 (71 samples, 0.08%)</title><rect x="555.9" y="181" width="0.9" height="15.0" fill="rgb(205,193,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.90" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:time:526 (74 samples, 0.08%)</title><rect x="1071.9" y="165" width="0.9" height="15.0" fill="rgb(252,111,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1074.86" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (12 samples, 0.01%)</title><rect x="983.2" y="85" width="0.1" height="15.0" fill="rgb(208,183,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="986.20" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:170 (10 samples, 0.01%)</title><rect x="988.7" y="69" width="0.1" height="15.0" fill="rgb(226,228,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="991.68" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:_done_callback:635 (20 samples, 0.02%)</title><rect x="815.3" y="181" width="0.2" height="15.0" fill="rgb(229,47,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="818.27" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:110 (47 samples, 0.05%)</title><rect x="904.8" y="53" width="0.5" height="15.0" fill="rgb(251,13,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="907.75" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:time:526 (52 samples, 0.06%)</title><rect x="1180.0" y="165" width="0.7" height="15.0" fill="rgb(211,146,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1183.00" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:44 (16 samples, 0.02%)</title><rect x="677.7" y="149" width="0.2" height="15.0" fill="rgb(227,55,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="680.73" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:create_future:276 (171 samples, 0.18%)</title><rect x="896.5" y="101" width="2.1" height="15.0" fill="rgb(240,161,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="899.48" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:get_event_loop:691 (190 samples, 0.20%)</title><rect x="974.8" y="117" width="2.4" height="15.0" fill="rgb(253,58,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.81" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:596 (112 samples, 0.12%)</title><rect x="1184.3" y="149" width="1.4" height="15.0" fill="rgb(225,62,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.25" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:109 (19 samples, 0.02%)</title><rect x="943.2" y="53" width="0.2" height="15.0" fill="rgb(213,46,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="946.15" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (11 samples, 0.01%)</title><rect x="905.2" y="37" width="0.1" height="15.0" fill="rgb(208,50,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="908.20" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:data_received:256 (510 samples, 0.54%)</title><rect x="807.2" y="165" width="6.4" height="15.0" fill="rgb(220,188,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="810.25" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:build:201 (17 samples, 0.02%)</title><rect x="793.7" y="149" width="0.2" height="15.0" fill="rgb(236,9,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.73" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:331 (72 samples, 0.08%)</title><rect x="886.5" y="165" width="0.9" height="15.0" fill="rgb(233,122,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="889.47" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:time:526 (55 samples, 0.06%)</title><rect x="716.4" y="133" width="0.7" height="15.0" fill="rgb(239,19,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.38" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:93 (19 samples, 0.02%)</title><rect x="852.7" y="133" width="0.2" height="15.0" fill="rgb(205,191,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.71" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:data_received:258 (14 samples, 0.01%)</title><rect x="813.6" y="165" width="0.2" height="15.0" fill="rgb(253,174,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.62" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:596 (227 samples, 0.24%)</title><rect x="810.4" y="133" width="2.8" height="15.0" fill="rgb(246,95,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="813.36" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:453 (54 samples, 0.06%)</title><rect x="545.4" y="197" width="0.7" height="15.0" fill="rgb(218,66,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.41" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:98 (13 samples, 0.01%)</title><rect x="791.2" y="149" width="0.2" height="15.0" fill="rgb(245,13,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.23" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:134 (12 samples, 0.01%)</title><rect x="911.1" y="85" width="0.1" height="15.0" fill="rgb(220,222,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.06" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/logging/__init__.py:getEffectiveLevel:1536 (21 samples, 0.02%)</title><rect x="1171.9" y="101" width="0.2" height="15.0" fill="rgb(246,40,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1174.85" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:283 (14 samples, 0.01%)</title><rect x="874.2" y="133" width="0.2" height="15.0" fill="rgb(251,141,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="877.22" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:work:13 (995 samples, 1.05%)</title><rect x="978.5" y="133" width="12.4" height="15.0" fill="rgb(231,35,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="981.47" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:474 (23 samples, 0.02%)</title><rect x="1162.6" y="149" width="0.3" height="15.0" fill="rgb(210,145,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.64" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:104 (9 samples, 0.01%)</title><rect x="788.2" y="149" width="0.1" height="15.0" fill="rgb(234,153,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.18" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:create_task:285 (1,107 samples, 1.17%)</title><rect x="931.9" y="101" width="13.8" height="15.0" fill="rgb(209,224,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.89" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:597 (13 samples, 0.01%)</title><rect x="729.5" y="165" width="0.1" height="15.0" fill="rgb(226,109,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.45" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:409 (132 samples, 0.14%)</title><rect x="1173.4" y="181" width="1.7" height="15.0" fill="rgb(236,131,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1176.43" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:476 (263 samples, 0.28%)</title><rect x="892.9" y="117" width="3.3" height="15.0" fill="rgb(227,157,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="895.88" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:107 (11 samples, 0.01%)</title><rect x="987.6" y="53" width="0.1" height="15.0" fill="rgb(219,107,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="990.61" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:109 (15 samples, 0.02%)</title><rect x="904.6" y="53" width="0.2" height="15.0" fill="rgb(244,174,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="907.56" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_do_enter:71 (13 samples, 0.01%)</title><rect x="962.2" y="117" width="0.1" height="15.0" fill="rgb(249,175,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.16" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:554 (42 samples, 0.04%)</title><rect x="967.8" y="101" width="0.5" height="15.0" fill="rgb(226,151,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="970.76" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:time:526 (43 samples, 0.05%)</title><rect x="907.4" y="85" width="0.5" height="15.0" fill="rgb(251,62,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.35" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:ensure_future:520 (13 samples, 0.01%)</title><rect x="946.1" y="117" width="0.1" height="15.0" fill="rgb(251,103,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="949.08" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/logging/__init__.py:isEnabledFor:1546 (67 samples, 0.07%)</title><rect x="1170.4" y="117" width="0.8" height="15.0" fill="rgb(230,10,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1173.35" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:398 (10 samples, 0.01%)</title><rect x="1064.2" y="149" width="0.1" height="15.0" fill="rgb(245,54,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1067.15" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_b:442 (181 samples, 0.19%)</title><rect x="1095.8" y="117" width="2.3" height="15.0" fill="rgb(240,122,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1098.81" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:315 (15 samples, 0.02%)</title><rect x="1015.6" y="133" width="0.2" height="15.0" fill="rgb(242,149,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1018.56" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:write:744 (73 samples, 0.08%)</title><rect x="1046.2" y="85" width="0.9" height="15.0" fill="rgb(214,106,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1049.19" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/abc.py:__instancecheck__:184 (205 samples, 0.22%)</title><rect x="994.7" y="165" width="2.5" height="15.0" fill="rgb(209,117,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.68" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:94 (25 samples, 0.03%)</title><rect x="852.9" y="133" width="0.4" height="15.0" fill="rgb(248,13,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.95" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:292 (9 samples, 0.01%)</title><rect x="880.9" y="133" width="0.2" height="15.0" fill="rgb(219,117,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="883.94" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:feed_eof:164 (43 samples, 0.05%)</title><rect x="792.1" y="149" width="0.5" height="15.0" fill="rgb(243,172,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.05" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:108 (10 samples, 0.01%)</title><rect x="987.7" y="53" width="0.2" height="15.0" fill="rgb(229,194,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="990.74" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:<genexpr>:458 (6,001 samples, 6.36%)</title><rect x="1081.9" y="133" width="75.0" height="15.0" fill="rgb(240,63,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1084.90" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dk..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:body:533 (17 samples, 0.02%)</title><rect x="688.7" y="149" width="0.2" height="15.0" fill="rgb(254,88,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="691.69" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1417 (1,092 samples, 1.16%)</title><rect x="606.2" y="213" width="13.6" height="15.0" fill="rgb(221,211,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="609.19" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:__new__:180 (39 samples, 0.04%)</title><rect x="802.1" y="133" width="0.5" height="15.0" fill="rgb(235,1,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.14" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:465 (36 samples, 0.04%)</title><rect x="1077.9" y="149" width="0.5" height="15.0" fill="rgb(229,60,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1080.92" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:450 (39 samples, 0.04%)</title><rect x="1178.7" y="181" width="0.5" height="15.0" fill="rgb(227,153,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.70" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (16 samples, 0.02%)</title><rect x="820.1" y="117" width="0.2" height="15.0" fill="rgb(228,22,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="823.12" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_r:433 (65 samples, 0.07%)</title><rect x="1104.0" y="117" width="0.8" height="15.0" fill="rgb(228,114,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1106.97" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_weakrefset.py:add:84 (163 samples, 0.17%)</title><rect x="937.5" y="85" width="2.0" height="15.0" fill="rgb(245,149,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="940.49" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:time:526 (17 samples, 0.02%)</title><rect x="520.6" y="197" width="0.2" height="15.0" fill="rgb(229,130,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.61" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:102 (90 samples, 0.10%)</title><rect x="786.8" y="149" width="1.1" height="15.0" fill="rgb(245,111,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.79" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:478 (42 samples, 0.04%)</title><rect x="702.0" y="165" width="0.5" height="15.0" fill="rgb(253,165,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.98" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:run_forever:423 (35 samples, 0.04%)</title><rect x="1189.6" y="229" width="0.4" height="15.0" fill="rgb(225,37,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.56" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_process_events:528 (242 samples, 0.26%)</title><rect x="555.5" y="197" width="3.0" height="15.0" fill="rgb(225,140,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.49" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/abc.py:__instancecheck__:188 (18 samples, 0.02%)</title><rect x="997.9" y="165" width="0.3" height="15.0" fill="rgb(214,170,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1000.94" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:455 (31 samples, 0.03%)</title><rect x="1180.9" y="181" width="0.4" height="15.0" fill="rgb(211,11,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1183.94" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__lt__:183 (20 samples, 0.02%)</title><rect x="907.0" y="69" width="0.3" height="15.0" fill="rgb(206,133,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.04" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:441 (16 samples, 0.02%)</title><rect x="668.6" y="165" width="0.2" height="15.0" fill="rgb(236,102,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.63" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:107 (12 samples, 0.01%)</title><rect x="788.7" y="149" width="0.1" height="15.0" fill="rgb(240,199,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.65" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:108 (9 samples, 0.01%)</title><rect x="812.3" y="117" width="0.1" height="15.0" fill="rgb(229,142,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.26" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:get_event_loop:691 (199 samples, 0.21%)</title><rect x="927.4" y="101" width="2.5" height="15.0" fill="rgb(225,62,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="930.43" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:642 (149 samples, 0.16%)</title><rect x="956.0" y="133" width="1.8" height="15.0" fill="rgb(230,180,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="958.98" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_line:457 (46 samples, 0.05%)</title><rect x="1075.7" y="133" width="0.6" height="15.0" fill="rgb(210,45,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.70" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:340 (15 samples, 0.02%)</title><rect x="1023.1" y="133" width="0.2" height="15.0" fill="rgb(233,106,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1026.09" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:635 (419 samples, 0.44%)</title><rect x="848.6" y="149" width="5.3" height="15.0" fill="rgb(208,141,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="851.63" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:__new__:149 (35 samples, 0.04%)</title><rect x="801.3" y="133" width="0.4" height="15.0" fill="rgb(223,40,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.29" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:579 (150 samples, 0.16%)</title><rect x="1184.1" y="165" width="1.9" height="15.0" fill="rgb(210,213,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.09" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (27 samples, 0.03%)</title><rect x="740.2" y="133" width="0.4" height="15.0" fill="rgb(229,98,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="743.24" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:42 (39 samples, 0.04%)</title><rect x="677.1" y="149" width="0.5" height="15.0" fill="rgb(212,214,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="680.14" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_weakrefset.py:_remove:44 (13 samples, 0.01%)</title><rect x="1189.4" y="197" width="0.2" height="15.0" fill="rgb(252,27,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.40" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:367 (30 samples, 0.03%)</title><rect x="832.8" y="181" width="0.3" height="15.0" fill="rgb(235,153,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="835.75" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:time:526 (192 samples, 0.20%)</title><rect x="561.3" y="197" width="2.4" height="15.0" fill="rgb(237,120,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.34" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:213 (167 samples, 0.18%)</title><rect x="824.1" y="165" width="2.1" height="15.0" fill="rgb(227,199,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="827.09" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_timer_handle_cancelled:1333 (18 samples, 0.02%)</title><rect x="823.0" y="149" width="0.3" height="15.0" fill="rgb(209,32,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="826.04" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:454 (85 samples, 0.09%)</title><rect x="670.8" y="165" width="1.1" height="15.0" fill="rgb(253,151,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="673.80" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:140 (11 samples, 0.01%)</title><rect x="825.6" y="149" width="0.2" height="15.0" fill="rgb(228,202,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="828.63" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:580 (11 samples, 0.01%)</title><rect x="730.3" y="181" width="0.1" height="15.0" fill="rgb(226,108,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.30" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:110 (47 samples, 0.05%)</title><rect x="812.4" y="117" width="0.6" height="15.0" fill="rgb(222,155,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.45" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:401 (319 samples, 0.34%)</title><rect x="1064.3" y="149" width="4.0" height="15.0" fill="rgb(225,118,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1067.28" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:135 (28 samples, 0.03%)</title><rect x="911.2" y="85" width="0.4" height="15.0" fill="rgb(226,19,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.21" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:build:194 (10 samples, 0.01%)</title><rect x="793.6" y="149" width="0.1" height="15.0" fill="rgb(242,93,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.58" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:110 (39 samples, 0.04%)</title><rect x="987.9" y="53" width="0.5" height="15.0" fill="rgb(218,29,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="990.92" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:589 (18 samples, 0.02%)</title><rect x="1061.9" y="165" width="0.2" height="15.0" fill="rgb(229,171,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.88" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:_done_callback:636 (42 samples, 0.04%)</title><rect x="815.5" y="181" width="0.5" height="15.0" fill="rgb(225,193,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="818.52" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:__str__:236 (70 samples, 0.07%)</title><rect x="1118.1" y="85" width="0.9" height="15.0" fill="rgb(250,11,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1121.08" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:status:72 (27 samples, 0.03%)</title><rect x="1128.9" y="101" width="0.3" height="15.0" fill="rgb(228,153,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1131.86" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:489 (164 samples, 0.17%)</title><rect x="686.8" y="165" width="2.1" height="15.0" fill="rgb(245,159,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.85" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:create_future:276 (221 samples, 0.23%)</title><rect x="828.2" y="165" width="2.8" height="15.0" fill="rgb(247,71,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="831.23" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:105 (22 samples, 0.02%)</title><rect x="942.5" y="53" width="0.2" height="15.0" fill="rgb(249,93,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.46" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:614 (56 samples, 0.06%)</title><rect x="953.6" y="133" width="0.7" height="15.0" fill="rgb(207,92,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="956.58" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:580 (10 samples, 0.01%)</title><rect x="945.3" y="85" width="0.1" height="15.0" fill="rgb(237,46,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="948.25" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:90 (9 samples, 0.01%)</title><rect x="851.5" y="133" width="0.1" height="15.0" fill="rgb(238,6,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.51" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:raw_path:466 (61 samples, 0.06%)</title><rect x="873.2" y="117" width="0.7" height="15.0" fill="rgb(229,195,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="876.18" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:579 (191 samples, 0.20%)</title><rect x="818.4" y="165" width="2.4" height="15.0" fill="rgb(239,31,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="821.45" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:579 (12 samples, 0.01%)</title><rect x="1060.2" y="165" width="0.1" height="15.0" fill="rgb(216,91,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.19" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_later:544 (1,085 samples, 1.15%)</title><rect x="703.5" y="149" width="13.6" height="15.0" fill="rgb(253,49,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="706.51" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:feed_eof:170 (52 samples, 0.06%)</title><rect x="792.6" y="149" width="0.7" height="15.0" fill="rgb(213,0,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.63" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:__str__:238 (723 samples, 0.77%)</title><rect x="1119.0" y="85" width="9.0" height="15.0" fill="rgb(221,109,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1121.95" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:616 (27 samples, 0.03%)</title><rect x="954.3" y="133" width="0.3" height="15.0" fill="rgb(223,118,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="957.28" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_do_exit:91 (12 samples, 0.01%)</title><rect x="663.0" y="149" width="0.1" height="15.0" fill="rgb(223,152,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="665.99" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:create_future:276 (124 samples, 0.13%)</title><rect x="981.8" y="101" width="1.5" height="15.0" fill="rgb(253,37,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="984.80" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:480 (1,167 samples, 1.24%)</title><rect x="702.7" y="165" width="14.6" height="15.0" fill="rgb(207,90,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="705.73" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_later:545 (9 samples, 0.01%)</title><rect x="907.9" y="101" width="0.1" height="15.0" fill="rgb(220,13,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.89" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_cancel_task:102 (17 samples, 0.02%)</title><rect x="1186.1" y="181" width="0.2" height="15.0" fill="rgb(221,46,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.06" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:create_task:284 (22 samples, 0.02%)</title><rect x="931.6" y="101" width="0.3" height="15.0" fill="rgb(220,155,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.62" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:333 (14 samples, 0.01%)</title><rect x="887.4" y="165" width="0.1" height="15.0" fill="rgb(253,53,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="890.37" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:84 (10 samples, 0.01%)</title><rect x="850.7" y="133" width="0.1" height="15.0" fill="rgb(224,19,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="853.65" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1345 (44 samples, 0.05%)</title><rect x="510.8" y="213" width="0.5" height="15.0" fill="rgb(236,83,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="513.75" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1407 (103 samples, 0.11%)</title><rect x="597.7" y="213" width="1.3" height="15.0" fill="rgb(242,33,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="600.71" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:__init__:29 (43 samples, 0.05%)</title><rect x="973.6" y="133" width="0.5" height="15.0" fill="rgb(230,99,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.61" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:__aenter__:49 (959 samples, 1.02%)</title><rect x="961.6" y="133" width="12.0" height="15.0" fill="rgb(254,23,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.63" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:__init__:550 (40 samples, 0.04%)</title><rect x="953.0" y="117" width="0.5" height="15.0" fill="rgb(230,7,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="956.02" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:rfc822_formatted_time:580 (13 samples, 0.01%)</title><rect x="1034.9" y="117" width="0.1" height="15.0" fill="rgb(208,95,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1037.86" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:211 (22 samples, 0.02%)</title><rect x="720.0" y="149" width="0.3" height="15.0" fill="rgb(222,14,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="723.00" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:_write:56 (140 samples, 0.15%)</title><rect x="1043.8" y="101" width="1.8" height="15.0" fill="rgb(249,200,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1046.82" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:484 (376 samples, 0.40%)</title><rect x="821.5" y="181" width="4.7" height="15.0" fill="rgb(230,204,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="824.48" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>(idle) (39,748 samples, 42.10%)</title><rect x="10.0" y="261" width="496.7" height="15.0" fill="rgb(241,145,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >(idle)</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:375 (1,229 samples, 1.30%)</title><rect x="838.8" y="181" width="15.3" height="15.0" fill="rgb(236,183,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="841.75" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:798 (46 samples, 0.05%)</title><rect x="865.4" y="149" width="0.5" height="15.0" fill="rgb(246,221,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="868.37" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:data_received:248 (22 samples, 0.02%)</title><rect x="804.9" y="165" width="0.3" height="15.0" fill="rgb(212,18,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="807.95" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_weakrefset.py:__contains__:72 (22 samples, 0.02%)</title><rect x="999.0" y="149" width="0.3" height="15.0" fill="rgb(217,80,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1002.03" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:593 (535 samples, 0.57%)</title><rect x="1062.1" y="165" width="6.7" height="15.0" fill="rgb(209,18,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.10" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:110 (44 samples, 0.05%)</title><rect x="819.8" y="133" width="0.5" height="15.0" fill="rgb(224,150,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="822.77" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:599 (17 samples, 0.02%)</title><rect x="1185.7" y="149" width="0.2" height="15.0" fill="rgb(221,89,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.71" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:105 (23 samples, 0.02%)</title><rect x="788.3" y="149" width="0.3" height="15.0" fill="rgb(244,52,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.29" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>all (94,421 samples, 100%)</title><rect x="10.0" y="277" width="1180.0" height="15.0" fill="rgb(250,16,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_process_events:522 (65 samples, 0.07%)</title><rect x="553.3" y="197" width="0.8" height="15.0" fill="rgb(214,30,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.30" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:167 (188 samples, 0.20%)</title><rect x="903.1" y="69" width="2.4" height="15.0" fill="rgb(206,44,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="906.13" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:__init__:24 (17 samples, 0.02%)</title><rect x="837.6" y="165" width="0.2" height="15.0" fill="rgb(210,152,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="840.60" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:319 (128 samples, 0.14%)</title><rect x="881.8" y="165" width="1.6" height="15.0" fill="rgb(242,210,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="884.78" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:554 (23 samples, 0.02%)</title><rect x="985.6" y="85" width="0.3" height="15.0" fill="rgb(211,140,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="988.60" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:356 (30 samples, 0.03%)</title><rect x="1035.7" y="133" width="0.4" height="15.0" fill="rgb(233,4,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1038.71" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_a:414 (11 samples, 0.01%)</title><rect x="1088.1" y="117" width="0.2" height="15.0" fill="rgb(205,82,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1091.12" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:579 (423 samples, 0.45%)</title><rect x="736.1" y="165" width="5.3" height="15.0" fill="rgb(246,150,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.08" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:166 (17 samples, 0.02%)</title><rect x="709.7" y="117" width="0.2" height="15.0" fill="rgb(218,113,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.69" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_read_ready:729 (17 samples, 0.02%)</title><rect x="745.9" y="181" width="0.2" height="15.0" fill="rgb(250,32,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="748.87" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (31 samples, 0.03%)</title><rect x="739.9" y="117" width="0.3" height="15.0" fill="rgb(245,184,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="742.85" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:add_app:196 (46 samples, 0.05%)</title><rect x="882.8" y="149" width="0.6" height="15.0" fill="rgb(219,91,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="885.81" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:357 (15 samples, 0.02%)</title><rect x="735.6" y="149" width="0.1" height="15.0" fill="rgb(225,163,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="738.55" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:472 (9 samples, 0.01%)</title><rect x="1161.2" y="149" width="0.1" height="15.0" fill="rgb(224,160,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1164.17" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/base_protocol.py:_drain_helper:56 (15 samples, 0.02%)</title><rect x="1067.4" y="101" width="0.2" height="15.0" fill="rgb(248,58,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.41" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:content_length:740 (116 samples, 0.12%)</title><rect x="1028.9" y="85" width="1.4" height="15.0" fill="rgb(211,178,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.87" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:171 (10 samples, 0.01%)</title><rect x="905.7" y="69" width="0.1" height="15.0" fill="rgb(253,131,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="908.65" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:91 (56 samples, 0.06%)</title><rect x="851.6" y="133" width="0.7" height="15.0" fill="rgb(227,173,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.63" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:598 (83 samples, 0.09%)</title><rect x="1009.5" y="149" width="1.1" height="15.0" fill="rgb(249,170,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1012.53" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_i:405 (450 samples, 0.48%)</title><rect x="1098.2" y="117" width="5.6" height="15.0" fill="rgb(228,80,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1101.20" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1372 (11 samples, 0.01%)</title><rect x="519.5" y="213" width="0.1" height="15.0" fill="rgb(236,178,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.51" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:work:13 (2,860 samples, 3.03%)</title><rect x="689.1" y="181" width="35.8" height="15.0" fill="rgb(216,18,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="692.14" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >./a..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_r:434 (1,857 samples, 1.97%)</title><rect x="1104.8" y="117" width="23.2" height="15.0" fill="rgb(211,47,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1107.78" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:372 (46 samples, 0.05%)</title><rect x="834.5" y="181" width="0.6" height="15.0" fill="rgb(246,135,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="837.50" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:599 (43 samples, 0.05%)</title><rect x="944.6" y="69" width="0.6" height="15.0" fill="rgb(254,224,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="947.63" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:595 (385 samples, 0.41%)</title><rect x="917.4" y="133" width="4.8" height="15.0" fill="rgb(211,137,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="920.39" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:796 (41 samples, 0.04%)</title><rect x="864.9" y="149" width="0.5" height="15.0" fill="rgb(213,8,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="867.86" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:559 (11 samples, 0.01%)</title><rect x="713.8" y="133" width="0.1" height="15.0" fill="rgb(219,198,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.78" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:content_length:737 (57 samples, 0.06%)</title><rect x="1027.9" y="85" width="0.8" height="15.0" fill="rgb(230,36,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1030.95" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:287 (43 samples, 0.05%)</title><rect x="875.6" y="133" width="0.6" height="15.0" fill="rgb(242,116,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.64" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:__init__:21 (23 samples, 0.02%)</title><rect x="836.6" y="165" width="0.3" height="15.0" fill="rgb(253,68,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="839.64" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:content_length:198 (314 samples, 0.33%)</title><rect x="1026.4" y="101" width="3.9" height="15.0" fill="rgb(252,197,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1029.40" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (20 samples, 0.02%)</title><rect x="944.2" y="53" width="0.3" height="15.0" fill="rgb(226,208,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="947.24" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:__new__:147 (41 samples, 0.04%)</title><rect x="800.8" y="133" width="0.5" height="15.0" fill="rgb(224,29,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.77" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:build:207 (82 samples, 0.09%)</title><rect x="794.1" y="149" width="1.0" height="15.0" fill="rgb(247,155,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.11" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:_write:54 (23 samples, 0.02%)</title><rect x="1043.5" y="101" width="0.3" height="15.0" fill="rgb(228,216,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1046.53" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:320 (127 samples, 0.13%)</title><rect x="1020.0" y="133" width="1.6" height="15.0" fill="rgb(221,84,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1022.98" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_process_events:533 (32 samples, 0.03%)</title><rect x="558.9" y="197" width="0.4" height="15.0" fill="rgb(238,229,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.93" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:prepare:300 (4,042 samples, 4.28%)</title><rect x="1008.7" y="165" width="50.5" height="15.0" fill="rgb(233,187,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1011.72" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:558 (18 samples, 0.02%)</title><rect x="826.8" y="149" width="0.2" height="15.0" fill="rgb(229,37,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="829.81" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:log_access:300 (8,043 samples, 8.52%)</title><rect x="1072.9" y="165" width="100.5" height="15.0" fill="rgb(228,103,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.91" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhoda..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:92 (31 samples, 0.03%)</title><rect x="852.3" y="133" width="0.4" height="15.0" fill="rgb(224,178,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.33" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:478 (29 samples, 0.03%)</title><rect x="983.3" y="117" width="0.4" height="15.0" fill="rgb(225,124,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="986.35" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1347 (52 samples, 0.06%)</title><rect x="512.5" y="213" width="0.6" height="15.0" fill="rgb(210,200,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.48" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:644 (51 samples, 0.05%)</title><rect x="927.6" y="85" width="0.6" height="15.0" fill="rgb(222,108,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="930.57" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:write:752 (21 samples, 0.02%)</title><rect x="1047.4" y="85" width="0.2" height="15.0" fill="rgb(238,15,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.36" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:477 (196 samples, 0.21%)</title><rect x="896.2" y="117" width="2.4" height="15.0" fill="rgb(248,72,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="899.17" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:471 (35 samples, 0.04%)</title><rect x="693.2" y="165" width="0.4" height="15.0" fill="rgb(226,130,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="696.20" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:601 (219 samples, 0.23%)</title><rect x="1010.9" y="149" width="2.7" height="15.0" fill="rgb(206,27,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1013.88" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1432 (45,174 samples, 47.84%)</title><rect x="622.7" y="213" width="564.5" height="15.0" fill="rgb(228,147,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="625.69" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/asyncio/base_events.py:_r..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:__new__:145 (11 samples, 0.01%)</title><rect x="800.6" y="133" width="0.2" height="15.0" fill="rgb(242,55,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.64" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:53 (18 samples, 0.02%)</title><rect x="680.1" y="149" width="0.2" height="15.0" fill="rgb(241,136,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.05" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:357 (15 samples, 0.02%)</title><rect x="707.1" y="117" width="0.1" height="15.0" fill="rgb(217,116,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="710.06" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:110 (89 samples, 0.09%)</title><rect x="739.1" y="133" width="1.1" height="15.0" fill="rgb(226,40,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="742.13" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:105 (26 samples, 0.03%)</title><rect x="711.4" y="101" width="0.3" height="15.0" fill="rgb(226,167,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="714.41" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:575 (88 samples, 0.09%)</title><rect x="734.8" y="165" width="1.1" height="15.0" fill="rgb(247,148,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="737.79" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1368 (62 samples, 0.07%)</title><rect x="518.6" y="213" width="0.8" height="15.0" fill="rgb(254,38,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.59" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:93 (62 samples, 0.07%)</title><rect x="789.2" y="149" width="0.8" height="15.0" fill="rgb(224,181,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.21" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:__init__:20 (44 samples, 0.05%)</title><rect x="836.1" y="165" width="0.5" height="15.0" fill="rgb(213,112,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="839.09" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_read_ready:720 (50 samples, 0.05%)</title><rect x="741.6" y="181" width="0.6" height="15.0" fill="rgb(230,83,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="744.60" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:log_access:299 (10 samples, 0.01%)</title><rect x="1072.8" y="165" width="0.1" height="15.0" fill="rgb(253,195,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.79" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:290 (42 samples, 0.04%)</title><rect x="876.7" y="133" width="0.5" height="15.0" fill="rgb(223,107,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="879.68" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:<genexpr>:457 (52 samples, 0.06%)</title><rect x="1081.2" y="133" width="0.7" height="15.0" fill="rgb(224,125,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1084.25" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_read_ready:723 (289 samples, 0.31%)</title><rect x="742.3" y="181" width="3.6" height="15.0" fill="rgb(223,26,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="745.26" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__lt__:183 (24 samples, 0.03%)</title><rect x="973.2" y="85" width="0.3" height="15.0" fill="rgb(241,32,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.16" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:rfc822_formatted_time:565 (126 samples, 0.13%)</title><rect x="1033.0" y="117" width="1.6" height="15.0" fill="rgb(207,90,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1036.01" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:current_task:106 (10 samples, 0.01%)</title><rect x="962.9" y="101" width="0.1" height="15.0" fill="rgb(232,209,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.88" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:473 (109 samples, 0.12%)</title><rect x="1161.3" y="149" width="1.3" height="15.0" fill="rgb(248,73,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1164.28" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:hard_work:26 (409 samples, 0.43%)</title><rect x="659.0" y="181" width="5.1" height="15.0" fill="rgb(221,39,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="661.96" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:479 (18 samples, 0.02%)</title><rect x="702.5" y="165" width="0.2" height="15.0" fill="rgb(214,90,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="705.51" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:477 (144 samples, 0.15%)</title><rect x="981.5" y="117" width="1.8" height="15.0" fill="rgb(210,42,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="984.55" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:587 (37 samples, 0.04%)</title><rect x="1061.4" y="165" width="0.5" height="15.0" fill="rgb(218,181,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.42" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_weakrefset.py:__contains__:75 (38 samples, 0.04%)</title><rect x="999.3" y="149" width="0.5" height="15.0" fill="rgb(229,71,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1002.30" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:110 (47 samples, 0.05%)</title><rect x="970.8" y="69" width="0.6" height="15.0" fill="rgb(251,32,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.85" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__lt__:183 (753 samples, 0.80%)</title><rect x="587.8" y="197" width="9.4" height="15.0" fill="rgb(235,48,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.81" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:<listcomp>:610 (54 samples, 0.06%)</title><rect x="948.6" y="117" width="0.7" height="15.0" fill="rgb(205,227,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="951.62" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:data_received:228 (61 samples, 0.06%)</title><rect x="748.3" y="165" width="0.7" height="15.0" fill="rgb(216,85,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="751.27" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:__init__:32 (16 samples, 0.02%)</title><rect x="977.2" y="133" width="0.2" height="15.0" fill="rgb(249,101,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.23" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_t:423 (1,512 samples, 1.60%)</title><rect x="1138.0" y="117" width="18.9" height="15.0" fill="rgb(234,190,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.00" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:445 (145 samples, 0.15%)</title><rect x="668.9" y="165" width="1.8" height="15.0" fill="rgb(250,80,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.88" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:610 (138 samples, 0.15%)</title><rect x="947.6" y="133" width="1.7" height="15.0" fill="rgb(224,209,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="950.57" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:357 (18 samples, 0.02%)</title><rect x="939.9" y="69" width="0.2" height="15.0" fill="rgb(212,125,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="942.92" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:325 (174 samples, 0.18%)</title><rect x="884.1" y="165" width="2.2" height="15.0" fill="rgb(209,21,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="887.12" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_weakrefset.py:_remove:44 (49 samples, 0.05%)</title><rect x="619.2" y="197" width="0.6" height="15.0" fill="rgb(251,114,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.23" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:body_length:107 (132 samples, 0.14%)</title><rect x="1096.4" y="101" width="1.7" height="15.0" fill="rgb(238,202,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1099.42" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:build:191 (24 samples, 0.03%)</title><rect x="793.3" y="149" width="0.3" height="15.0" fill="rgb(246,73,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.28" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:__str__:235 (54 samples, 0.06%)</title><rect x="1117.4" y="85" width="0.7" height="15.0" fill="rgb(218,18,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1120.40" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_do_exit:89 (42 samples, 0.04%)</title><rect x="661.9" y="149" width="0.5" height="15.0" fill="rgb(224,57,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="664.85" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_run:157 (77 samples, 0.08%)</title><rect x="1186.3" y="197" width="0.9" height="15.0" fill="rgb(211,64,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.28" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:ensure_future:512 (189 samples, 0.20%)</title><rect x="923.1" y="117" width="2.3" height="15.0" fill="rgb(245,220,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.06" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_later:544 (634 samples, 0.67%)</title><rect x="900.0" y="101" width="7.9" height="15.0" fill="rgb(219,224,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.96" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:212 (80 samples, 0.08%)</title><rect x="720.3" y="149" width="1.0" height="15.0" fill="rgb(249,53,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="723.28" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:466 (6,283 samples, 6.65%)</title><rect x="1078.4" y="149" width="78.5" height="15.0" fill="rgb(224,133,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.37" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkh..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:write_eof:103 (14 samples, 0.01%)</title><rect x="1065.1" y="133" width="0.2" height="15.0" fill="rgb(210,57,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1068.10" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:470 (61 samples, 0.06%)</title><rect x="1160.4" y="149" width="0.8" height="15.0" fill="rgb(235,80,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1163.41" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:596 (302 samples, 0.32%)</title><rect x="736.8" y="149" width="3.8" height="15.0" fill="rgb(226,92,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.80" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:398 (4,747 samples, 5.03%)</title><rect x="999.9" y="181" width="59.3" height="15.0" fill="rgb(241,140,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1002.90" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:475 (83 samples, 0.09%)</title><rect x="1162.9" y="149" width="1.1" height="15.0" fill="rgb(235,44,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.93" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:headers:139 (13 samples, 0.01%)</title><rect x="1025.3" y="101" width="0.2" height="15.0" fill="rgb(234,181,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1028.34" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_process_events:524 (37 samples, 0.04%)</title><rect x="554.7" y="197" width="0.5" height="15.0" fill="rgb(242,165,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.73" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:135 (72 samples, 0.08%)</title><rect x="723.2" y="133" width="0.9" height="15.0" fill="rgb(235,198,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="726.19" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:add_app:195 (9 samples, 0.01%)</title><rect x="882.7" y="149" width="0.1" height="15.0" fill="rgb(206,66,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="885.69" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:378 (10,942 samples, 11.59%)</title><rect x="854.2" y="181" width="136.7" height="15.0" fill="rgb(230,179,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.17" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhodakov/...</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:404 (17 samples, 0.02%)</title><rect x="1068.4" y="149" width="0.2" height="15.0" fill="rgb(224,119,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.41" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:597 (11 samples, 0.01%)</title><rect x="944.5" y="69" width="0.1" height="15.0" fill="rgb(212,75,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="947.49" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:331 (9 samples, 0.01%)</title><rect x="1023.0" y="133" width="0.1" height="15.0" fill="rgb(238,164,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1025.97" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:__init__:31 (238 samples, 0.25%)</title><rect x="974.3" y="133" width="2.9" height="15.0" fill="rgb(222,89,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.26" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:212 (53 samples, 0.06%)</title><rect x="909.7" y="101" width="0.6" height="15.0" fill="rgb(250,8,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.66" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:476 (372 samples, 0.39%)</title><rect x="693.7" y="165" width="4.6" height="15.0" fill="rgb(232,59,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="696.70" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:105 (27 samples, 0.03%)</title><rect x="811.6" y="117" width="0.3" height="15.0" fill="rgb(237,179,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="814.60" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:prepare:296 (12 samples, 0.01%)</title><rect x="1001.1" y="165" width="0.2" height="15.0" fill="rgb(235,186,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1004.13" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:write_eof:130 (24 samples, 0.03%)</title><rect x="1067.8" y="133" width="0.3" height="15.0" fill="rgb(228,161,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.80" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:set_exception:130 (59 samples, 0.06%)</title><rect x="1177.0" y="165" width="0.7" height="15.0" fill="rgb(245,202,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.98" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:453 (114 samples, 0.12%)</title><rect x="1179.2" y="181" width="1.5" height="15.0" fill="rgb(206,115,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.23" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:171 (12 samples, 0.01%)</title><rect x="713.6" y="117" width="0.2" height="15.0" fill="rgb(213,30,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.63" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:__init__:162 (109 samples, 0.12%)</title><rect x="878.2" y="117" width="1.4" height="15.0" fill="rgb(252,104,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="881.24" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_process_events:525 (24 samples, 0.03%)</title><rect x="555.2" y="197" width="0.3" height="15.0" fill="rgb(235,154,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.19" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:795 (304 samples, 0.32%)</title><rect x="861.1" y="149" width="3.8" height="15.0" fill="rgb(229,27,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="864.06" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:482 (30 samples, 0.03%)</title><rect x="990.5" y="117" width="0.4" height="15.0" fill="rgb(228,205,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.53" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:351 (84 samples, 0.09%)</title><rect x="1030.4" y="133" width="1.1" height="15.0" fill="rgb(207,121,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1033.42" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:141 (48 samples, 0.05%)</title><rect x="724.3" y="133" width="0.6" height="15.0" fill="rgb(233,78,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.28" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:644 (78 samples, 0.08%)</title><rect x="694.5" y="133" width="1.0" height="15.0" fill="rgb(230,146,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="697.54" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/urllib/parse.py:_coerce_args:119 (80 samples, 0.08%)</title><rect x="1124.6" y="53" width="1.0" height="15.0" fill="rgb(254,5,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1127.58" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:101 (16 samples, 0.02%)</title><rect x="786.6" y="149" width="0.2" height="15.0" fill="rgb(244,217,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.59" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:content_length:561 (386 samples, 0.41%)</title><rect x="1025.5" y="117" width="4.8" height="15.0" fill="rgb(240,76,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1028.50" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1404 (31 samples, 0.03%)</title><rect x="567.9" y="213" width="0.4" height="15.0" fill="rgb(224,85,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.91" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:106 (12 samples, 0.01%)</title><rect x="942.7" y="53" width="0.2" height="15.0" fill="rgb(234,22,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.73" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:__init__:30 (9 samples, 0.01%)</title><rect x="974.1" y="133" width="0.2" height="15.0" fill="rgb(224,47,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.15" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:build:211 (24 samples, 0.03%)</title><rect x="795.2" y="149" width="0.3" height="15.0" fill="rgb(240,228,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.21" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:471 (25 samples, 0.03%)</title><rect x="892.6" y="117" width="0.3" height="15.0" fill="rgb(245,165,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="895.55" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:set_exception:137 (10 samples, 0.01%)</title><rect x="1178.0" y="165" width="0.1" height="15.0" fill="rgb(243,128,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.97" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:645 (134 samples, 0.14%)</title><rect x="928.2" y="85" width="1.7" height="15.0" fill="rgb(248,42,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="931.21" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:47 (112 samples, 0.12%)</title><rect x="678.2" y="149" width="1.4" height="15.0" fill="rgb(210,52,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="681.20" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:get_event_loop:691 (141 samples, 0.15%)</title><rect x="979.8" y="101" width="1.7" height="15.0" fill="rgb(209,20,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="982.76" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:handler:170 (34 samples, 0.04%)</title><rect x="886.9" y="149" width="0.5" height="15.0" fill="rgb(240,44,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="889.94" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_a:416 (598 samples, 0.63%)</title><rect x="1088.3" y="117" width="7.4" height="15.0" fill="rgb(252,48,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1091.26" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:108 (28 samples, 0.03%)</title><rect x="904.2" y="53" width="0.4" height="15.0" fill="rgb(236,5,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="907.21" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_futures.py:isfuture:30 (130 samples, 0.14%)</title><rect x="923.7" y="101" width="1.7" height="15.0" fill="rgb(231,33,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.73" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:write_headers:99 (680 samples, 0.72%)</title><rect x="1050.7" y="117" width="8.5" height="15.0" fill="rgb(250,13,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1053.71" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:99 (19 samples, 0.02%)</title><rect x="853.6" y="133" width="0.3" height="15.0" fill="rgb(242,202,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.62" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:write_eof:128 (169 samples, 0.18%)</title><rect x="1065.7" y="133" width="2.1" height="15.0" fill="rgb(208,49,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1068.69" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:286 (71 samples, 0.08%)</title><rect x="874.8" y="133" width="0.8" height="15.0" fill="rgb(245,11,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="877.76" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:140 (11 samples, 0.01%)</title><rect x="911.6" y="85" width="0.1" height="15.0" fill="rgb(219,200,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.56" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:body:506 (15 samples, 0.02%)</title><rect x="688.5" y="149" width="0.2" height="15.0" fill="rgb(206,174,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="691.50" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:apps:189 (78 samples, 0.08%)</title><rect x="1003.8" y="133" width="0.9" height="15.0" fill="rgb(216,84,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1006.77" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:596 (226 samples, 0.24%)</title><rect x="726.6" y="165" width="2.9" height="15.0" fill="rgb(239,52,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="729.63" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_process_events:529 (33 samples, 0.03%)</title><rect x="558.5" y="197" width="0.4" height="15.0" fill="rgb(206,105,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.52" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:575 (52 samples, 0.06%)</title><rect x="939.5" y="85" width="0.7" height="15.0" fill="rgb(222,170,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="942.53" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:current_task:109 (153 samples, 0.16%)</title><rect x="963.0" y="101" width="1.9" height="15.0" fill="rgb(219,178,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="966.00" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:449 (16 samples, 0.02%)</title><rect x="1178.5" y="181" width="0.2" height="15.0" fill="rgb(245,99,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.50" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:645 (139 samples, 0.15%)</title><rect x="894.3" y="85" width="1.8" height="15.0" fill="rgb(247,61,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="897.32" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/urllib/parse.py:urlunsplit:469 (14 samples, 0.01%)</title><rect x="1126.8" y="69" width="0.2" height="15.0" fill="rgb(237,166,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1129.81" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:313 (22 samples, 0.02%)</title><rect x="1015.3" y="133" width="0.3" height="15.0" fill="rgb(229,196,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1018.29" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:103 (21 samples, 0.02%)</title><rect x="787.9" y="149" width="0.3" height="15.0" fill="rgb(220,12,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="790.91" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:464 (53 samples, 0.06%)</title><rect x="1077.3" y="149" width="0.6" height="15.0" fill="rgb(228,14,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1080.26" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_i:401 (10 samples, 0.01%)</title><rect x="1098.1" y="117" width="0.1" height="15.0" fill="rgb(241,18,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1101.07" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:558 (295 samples, 0.31%)</title><rect x="902.1" y="85" width="3.7" height="15.0" fill="rgb(228,224,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="905.09" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1402 (115 samples, 0.12%)</title><rect x="564.9" y="213" width="1.4" height="15.0" fill="rgb(213,35,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.90" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:576 (15 samples, 0.02%)</title><rect x="735.9" y="165" width="0.2" height="15.0" fill="rgb(235,154,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="738.89" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:133 (11 samples, 0.01%)</title><rect x="722.7" y="133" width="0.2" height="15.0" fill="rgb(223,201,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="725.74" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:644 (44 samples, 0.05%)</title><rect x="975.0" y="101" width="0.6" height="15.0" fill="rgb(228,212,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="978.04" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:107 (12 samples, 0.01%)</title><rect x="812.1" y="117" width="0.2" height="15.0" fill="rgb(218,192,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.11" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (23 samples, 0.02%)</title><rect x="729.2" y="149" width="0.3" height="15.0" fill="rgb(219,142,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.17" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:447 (16 samples, 0.02%)</title><rect x="1178.3" y="181" width="0.2" height="15.0" fill="rgb(239,216,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.30" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:608 (40 samples, 0.04%)</title><rect x="947.1" y="133" width="0.5" height="15.0" fill="rgb(248,52,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="950.07" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:107 (11 samples, 0.01%)</title><rect x="970.5" y="69" width="0.2" height="15.0" fill="rgb(215,210,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.54" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:482 (43 samples, 0.05%)</title><rect x="820.9" y="181" width="0.6" height="15.0" fill="rgb(224,131,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="823.94" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:448 (137 samples, 0.15%)</title><rect x="541.1" y="197" width="1.7" height="15.0" fill="rgb(234,41,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.13" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:470 (121 samples, 0.13%)</title><rect x="674.6" y="165" width="1.5" height="15.0" fill="rgb(227,118,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="677.55" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_weakrefset.py:_remove:41 (35 samples, 0.04%)</title><rect x="618.8" y="197" width="0.4" height="15.0" fill="rgb(231,82,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="621.79" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:105 (16 samples, 0.02%)</title><rect x="970.2" y="69" width="0.2" height="15.0" fill="rgb(242,39,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.25" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:140 (15 samples, 0.02%)</title><rect x="724.1" y="133" width="0.2" height="15.0" fill="rgb(248,175,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.09" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:321 (44 samples, 0.05%)</title><rect x="883.4" y="165" width="0.5" height="15.0" fill="rgb(212,26,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="886.38" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:373 (288 samples, 0.31%)</title><rect x="835.1" y="181" width="3.6" height="15.0" fill="rgb(227,133,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="838.08" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:__init__:23 (54 samples, 0.06%)</title><rect x="836.9" y="165" width="0.7" height="15.0" fill="rgb(245,108,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="839.93" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/base_protocol.py:_drain_helper:59 (10 samples, 0.01%)</title><rect x="1067.7" y="101" width="0.1" height="15.0" fill="rgb(217,99,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.66" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_cancel_task:100 (32 samples, 0.03%)</title><rect x="1181.4" y="181" width="0.4" height="15.0" fill="rgb(236,6,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.40" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:remote:336 (72 samples, 0.08%)</title><rect x="1091.2" y="101" width="0.9" height="15.0" fill="rgb(223,202,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1094.23" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:write:769 (12 samples, 0.01%)</title><rect x="1050.4" y="85" width="0.2" height="15.0" fill="rgb(238,189,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1053.43" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:work:13 (1,696 samples, 1.80%)</title><rect x="890.7" y="133" width="21.2" height="15.0" fill="rgb(254,192,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="893.69" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:324 (68 samples, 0.07%)</title><rect x="1021.9" y="133" width="0.9" height="15.0" fill="rgb(215,200,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1024.91" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:358 (9 samples, 0.01%)</title><rect x="931.5" y="85" width="0.1" height="15.0" fill="rgb(251,77,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.51" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:429 (25 samples, 0.03%)</title><rect x="524.1" y="197" width="0.3" height="15.0" fill="rgb(252,0,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.14" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:353 (55 samples, 0.06%)</title><rect x="1035.0" y="133" width="0.7" height="15.0" fill="rgb(220,221,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1038.02" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_add_callback:1321 (13 samples, 0.01%)</title><rect x="556.8" y="181" width="0.2" height="15.0" fill="rgb(214,155,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.79" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:set_exception:129 (42 samples, 0.04%)</title><rect x="1176.5" y="165" width="0.5" height="15.0" fill="rgb(238,182,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.45" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:hard_work:26 (1,037 samples, 1.10%)</title><rect x="977.9" y="149" width="13.0" height="15.0" fill="rgb(232,64,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.95" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:108 (9 samples, 0.01%)</title><rect x="943.0" y="53" width="0.2" height="15.0" fill="rgb(224,131,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="946.04" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_later:544 (495 samples, 0.52%)</title><rect x="984.3" y="101" width="6.1" height="15.0" fill="rgb(230,217,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="987.26" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:134 (25 samples, 0.03%)</title><rect x="722.9" y="133" width="0.3" height="15.0" fill="rgb(233,14,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="725.88" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:time:526 (34 samples, 0.04%)</title><rect x="966.3" y="101" width="0.4" height="15.0" fill="rgb(205,178,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="969.27" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:write_eof:131 (13 samples, 0.01%)</title><rect x="1068.1" y="133" width="0.2" height="15.0" fill="rgb(233,226,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.10" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_do_enter:79 (26 samples, 0.03%)</title><rect x="965.2" y="117" width="0.3" height="15.0" fill="rgb(231,41,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.15" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:is_closing:611 (41 samples, 0.04%)</title><rect x="1045.1" y="85" width="0.5" height="15.0" fill="rgb(235,192,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1048.06" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/urllib/parse.py:_noop:99 (19 samples, 0.02%)</title><rect x="1127.8" y="53" width="0.2" height="15.0" fill="rgb(242,81,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1130.75" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:484 (232 samples, 0.25%)</title><rect x="909.0" y="117" width="2.9" height="15.0" fill="rgb(238,20,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.99" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:<module>:47 (54,673 samples, 57.90%)</title><rect x="506.7" y="261" width="683.3" height="15.0" fill="rgb(216,109,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.74" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >./aiohttp_server.py:<module>:47</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/abc.py:__instancecheck__:189 (24 samples, 0.03%)</title><rect x="998.2" y="165" width="0.3" height="15.0" fill="rgb(218,11,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1001.17" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:445 (876 samples, 0.93%)</title><rect x="530.2" y="197" width="10.9" height="15.0" fill="rgb(248,33,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="533.18" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:476 (169 samples, 0.18%)</title><rect x="979.4" y="117" width="2.1" height="15.0" fill="rgb(249,19,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="982.43" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:60 (278 samples, 0.29%)</title><rect x="683.2" y="149" width="3.5" height="15.0" fill="rgb(235,74,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="686.24" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:ensure_future:516 (128 samples, 0.14%)</title><rect x="925.4" y="117" width="1.6" height="15.0" fill="rgb(245,136,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="928.42" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:800 (11 samples, 0.01%)</title><rect x="881.1" y="149" width="0.1" height="15.0" fill="rgb(210,23,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="884.08" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:method:132 (28 samples, 0.03%)</title><rect x="875.3" y="117" width="0.3" height="15.0" fill="rgb(214,203,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.30" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:set_status:96 (13 samples, 0.01%)</title><rect x="686.5" y="133" width="0.2" height="15.0" fill="rgb(209,173,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.55" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:479 (20 samples, 0.02%)</title><rect x="899.3" y="117" width="0.3" height="15.0" fill="rgb(211,59,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.30" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_weakrefset.py:_remove:39 (29 samples, 0.03%)</title><rect x="618.4" y="197" width="0.3" height="15.0" fill="rgb(211,162,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="621.38" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:106 (11 samples, 0.01%)</title><rect x="711.7" y="101" width="0.2" height="15.0" fill="rgb(225,177,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="714.73" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:211 (16 samples, 0.02%)</title><rect x="822.2" y="165" width="0.2" height="15.0" fill="rgb(235,138,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="825.23" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:body:504 (62 samples, 0.07%)</title><rect x="687.6" y="149" width="0.7" height="15.0" fill="rgb(214,139,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.57" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:_write:58 (411 samples, 0.44%)</title><rect x="1045.6" y="101" width="5.1" height="15.0" fill="rgb(227,72,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1048.57" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:291 (299 samples, 0.32%)</title><rect x="877.2" y="133" width="3.7" height="15.0" fill="rgb(205,80,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="880.21" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_futures.py:isfuture:30 (299 samples, 0.32%)</title><rect x="918.4" y="117" width="3.7" height="15.0" fill="rgb(214,28,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.39" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/futures.py:_set_result_unless_cancelled:343 (821 samples, 0.87%)</title><rect x="731.3" y="181" width="10.2" height="15.0" fill="rgb(241,192,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.29" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:141 (33 samples, 0.03%)</title><rect x="825.8" y="149" width="0.4" height="15.0" fill="rgb(234,184,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="828.77" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><string>:__new__:14 (152 samples, 0.16%)</title><rect x="797.2" y="133" width="1.9" height="15.0" fill="rgb(254,26,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.25" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:ensure_future:518 (234 samples, 0.25%)</title><rect x="927.1" y="117" width="2.9" height="15.0" fill="rgb(254,16,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="930.08" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1355 (16 samples, 0.02%)</title><rect x="513.3" y="213" width="0.2" height="15.0" fill="rgb(251,12,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.29" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (13 samples, 0.01%)</title><rect x="813.0" y="117" width="0.2" height="15.0" fill="rgb(213,18,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.03" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (13 samples, 0.01%)</title><rect x="729.0" y="133" width="0.2" height="15.0" fill="rgb(237,110,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.00" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:105 (15 samples, 0.02%)</title><rect x="738.3" y="133" width="0.2" height="15.0" fill="rgb(224,62,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="741.34" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:method:301 (14 samples, 0.01%)</title><rect x="864.7" y="133" width="0.2" height="15.0" fill="rgb(245,137,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="867.68" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:__init__:34 (11 samples, 0.01%)</title><rect x="977.5" y="133" width="0.2" height="15.0" fill="rgb(239,140,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.52" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:639 (20 samples, 0.02%)</title><rect x="853.9" y="149" width="0.2" height="15.0" fill="rgb(254,134,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.86" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:370 (50 samples, 0.05%)</title><rect x="833.9" y="181" width="0.6" height="15.0" fill="rgb(231,90,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="836.88" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:167 (154 samples, 0.16%)</title><rect x="986.7" y="69" width="1.9" height="15.0" fill="rgb(250,143,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="989.68" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:361 (111 samples, 0.12%)</title><rect x="831.0" y="181" width="1.4" height="15.0" fill="rgb(209,5,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="833.99" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (23 samples, 0.02%)</title><rect x="713.2" y="101" width="0.3" height="15.0" fill="rgb(246,147,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.17" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:167 (284 samples, 0.30%)</title><rect x="709.9" y="117" width="3.6" height="15.0" fill="rgb(210,114,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.91" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:484 (469 samples, 0.50%)</title><rect x="719.0" y="165" width="5.9" height="15.0" fill="rgb(233,174,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="722.02" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:281 (396 samples, 0.42%)</title><rect x="869.2" y="133" width="4.9" height="15.0" fill="rgb(251,110,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="872.20" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:45 (15 samples, 0.02%)</title><rect x="677.9" y="149" width="0.2" height="15.0" fill="rgb(244,142,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="680.93" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:599 (19 samples, 0.02%)</title><rect x="1010.6" y="149" width="0.2" height="15.0" fill="rgb(248,15,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1013.56" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:593 (14 samples, 0.01%)</title><rect x="915.3" y="133" width="0.2" height="15.0" fill="rgb(225,187,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="918.34" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:314 (1,742 samples, 1.84%)</title><rect x="859.9" y="165" width="21.8" height="15.0" fill="rgb(233,128,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="862.89" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/urllib/parse.py:urlunsplit:478 (64 samples, 0.07%)</title><rect x="1127.2" y="69" width="0.8" height="15.0" fill="rgb(218,52,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1130.19" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:358 (12 samples, 0.01%)</title><rect x="735.7" y="149" width="0.2" height="15.0" fill="rgb(206,36,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="738.74" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_do_enter:85 (535 samples, 0.57%)</title><rect x="966.9" y="117" width="6.7" height="15.0" fill="rgb(212,8,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="969.89" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:392 (47 samples, 0.05%)</title><rect x="1063.5" y="149" width="0.6" height="15.0" fill="rgb(212,52,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1066.49" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:598 (9 samples, 0.01%)</title><rect x="946.4" y="133" width="0.1" height="15.0" fill="rgb(233,6,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="949.40" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:107 (16 samples, 0.02%)</title><rect x="738.7" y="133" width="0.2" height="15.0" fill="rgb(219,222,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="741.65" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:transport:172 (17 samples, 0.02%)</title><rect x="1091.9" y="85" width="0.2" height="15.0" fill="rgb(247,80,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1094.92" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (13 samples, 0.01%)</title><rect x="1185.5" y="133" width="0.2" height="15.0" fill="rgb(241,191,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.49" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:95 (13 samples, 0.01%)</title><rect x="853.3" y="133" width="0.1" height="15.0" fill="rgb(243,16,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.26" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:_done_callback:618 (53 samples, 0.06%)</title><rect x="814.0" y="181" width="0.7" height="15.0" fill="rgb(226,75,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="817.00" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:prepare:294 (15 samples, 0.02%)</title><rect x="1000.9" y="165" width="0.2" height="15.0" fill="rgb(216,171,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1003.94" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:85 (23 samples, 0.02%)</title><rect x="850.8" y="133" width="0.3" height="15.0" fill="rgb(222,214,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="853.78" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:134 (11 samples, 0.01%)</title><rect x="825.1" y="149" width="0.2" height="15.0" fill="rgb(239,43,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="828.13" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:561 (117 samples, 0.12%)</title><rect x="905.8" y="85" width="1.5" height="15.0" fill="rgb(247,109,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="908.83" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:406 (8,232 samples, 8.72%)</title><rect x="1070.6" y="181" width="102.8" height="15.0" fill="rgb(208,15,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.55" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhoda..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:645 (126 samples, 0.13%)</title><rect x="975.6" y="101" width="1.6" height="15.0" fill="rgb(231,171,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="978.59" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:586 (60 samples, 0.06%)</title><rect x="1060.7" y="165" width="0.7" height="15.0" fill="rgb(230,167,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.67" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:449 (9 samples, 0.01%)</title><rect x="542.8" y="197" width="0.2" height="15.0" fill="rgb(214,114,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.84" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:__init__:35 (11 samples, 0.01%)</title><rect x="977.7" y="133" width="0.1" height="15.0" fill="rgb(229,72,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.66" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1401 (93 samples, 0.10%)</title><rect x="563.7" y="213" width="1.2" height="15.0" fill="rgb(222,88,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.74" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:time:526 (25 samples, 0.03%)</title><rect x="834.2" y="165" width="0.3" height="15.0" fill="rgb(237,214,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="837.19" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:467 (168 samples, 0.18%)</title><rect x="1156.9" y="149" width="2.1" height="15.0" fill="rgb(247,191,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1159.89" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/signals.py:send:35 (11 samples, 0.01%)</title><rect x="1008.3" y="133" width="0.1" height="15.0" fill="rgb(221,0,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1011.25" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:headers:390 (15 samples, 0.02%)</title><rect x="886.1" y="149" width="0.2" height="15.0" fill="rgb(224,45,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="889.11" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_later:545 (9 samples, 0.01%)</title><rect x="717.1" y="149" width="0.1" height="15.0" fill="rgb(246,102,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="720.07" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:write:768 (48 samples, 0.05%)</title><rect x="1049.8" y="85" width="0.6" height="15.0" fill="rgb(213,50,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1052.83" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1403 (126 samples, 0.13%)</title><rect x="566.3" y="213" width="1.6" height="15.0" fill="rgb(229,29,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.34" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:raw_path:467 (11 samples, 0.01%)</title><rect x="873.9" y="117" width="0.2" height="15.0" fill="rgb(205,214,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="876.95" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:on_response_prepare:210 (26 samples, 0.03%)</title><rect x="1008.4" y="133" width="0.3" height="15.0" fill="rgb(235,107,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1011.39" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:576 (13 samples, 0.01%)</title><rect x="940.2" y="85" width="0.1" height="15.0" fill="rgb(209,148,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.18" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:641 (109 samples, 0.12%)</title><rect x="954.6" y="133" width="1.4" height="15.0" fill="rgb(233,228,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="957.61" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:558 (233 samples, 0.25%)</title><rect x="986.0" y="85" width="2.9" height="15.0" fill="rgb(214,74,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="988.98" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:576 (11 samples, 0.01%)</title><rect x="725.9" y="181" width="0.2" height="15.0" fill="rgb(244,22,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.94" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/abc.py:__instancecheck__:186 (52 samples, 0.06%)</title><rect x="997.2" y="165" width="0.7" height="15.0" fill="rgb(249,116,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1000.24" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:set_status:93 (70 samples, 0.07%)</title><rect x="685.7" y="133" width="0.8" height="15.0" fill="rgb(253,66,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="688.67" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:write:758 (20 samples, 0.02%)</title><rect x="1047.6" y="85" width="0.3" height="15.0" fill="rgb(234,173,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.62" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:471 (12 samples, 0.01%)</title><rect x="979.3" y="117" width="0.1" height="15.0" fill="rgb(252,202,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="982.26" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:141 (15 samples, 0.02%)</title><rect x="911.7" y="85" width="0.2" height="15.0" fill="rgb(240,7,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.70" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:575 (37 samples, 0.04%)</title><rect x="817.9" y="165" width="0.4" height="15.0" fill="rgb(253,95,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="820.87" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_run:144 (37 samples, 0.04%)</title><rect x="627.3" y="197" width="0.5" height="15.0" fill="rgb(229,189,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="630.34" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:343 (10 samples, 0.01%)</title><rect x="826.4" y="181" width="0.1" height="15.0" fill="rgb(205,138,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="829.42" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:321 (25 samples, 0.03%)</title><rect x="1021.6" y="133" width="0.3" height="15.0" fill="rgb(250,30,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1024.56" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:581 (15 samples, 0.02%)</title><rect x="1060.3" y="165" width="0.2" height="15.0" fill="rgb(229,71,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.34" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:_process_keepalive:324 (36 samples, 0.04%)</title><rect x="826.7" y="181" width="0.4" height="15.0" fill="rgb(249,199,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="829.69" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:285 (29 samples, 0.03%)</title><rect x="874.4" y="133" width="0.4" height="15.0" fill="rgb(214,175,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="877.40" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:__init__:165 (41 samples, 0.04%)</title><rect x="880.2" y="117" width="0.5" height="15.0" fill="rgb(211,100,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="883.21" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:_done_callback:638 (11 samples, 0.01%)</title><rect x="816.2" y="181" width="0.2" height="15.0" fill="rgb(251,40,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="819.23" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:352 (284 samples, 0.30%)</title><rect x="1031.5" y="133" width="3.5" height="15.0" fill="rgb(228,168,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1034.47" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (28 samples, 0.03%)</title><rect x="701.6" y="133" width="0.4" height="15.0" fill="rgb(217,74,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.63" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__lt__:183 (44 samples, 0.05%)</title><rect x="715.6" y="117" width="0.6" height="15.0" fill="rgb(251,225,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="718.64" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_do_exit:90 (49 samples, 0.05%)</title><rect x="662.4" y="149" width="0.6" height="15.0" fill="rgb(214,92,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="665.38" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_weakrefset.py:__contains__:75 (53 samples, 0.06%)</title><rect x="996.6" y="149" width="0.6" height="15.0" fill="rgb(220,44,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="999.58" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1400 (353 samples, 0.37%)</title><rect x="559.3" y="213" width="4.4" height="15.0" fill="rgb(213,27,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.33" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_do_enter:84 (15 samples, 0.02%)</title><rect x="966.7" y="117" width="0.2" height="15.0" fill="rgb(227,174,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="969.70" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:341 (19 samples, 0.02%)</title><rect x="826.2" y="181" width="0.2" height="15.0" fill="rgb(212,100,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="829.18" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1406 (39 samples, 0.04%)</title><rect x="597.2" y="213" width="0.5" height="15.0" fill="rgb(242,42,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="600.22" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:__init__:27 (11 samples, 0.01%)</title><rect x="838.0" y="165" width="0.1" height="15.0" fill="rgb(217,103,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="840.98" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:feed_eof:152 (28 samples, 0.03%)</title><rect x="791.5" y="149" width="0.4" height="15.0" fill="rgb(251,48,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.54" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:480 (532 samples, 0.56%)</title><rect x="983.9" y="117" width="6.6" height="15.0" fill="rgb(216,75,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="986.86" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/transports.py:get_extra_info:20 (99 samples, 0.10%)</title><rect x="1093.1" y="85" width="1.2" height="15.0" fill="rgb(222,195,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1096.06" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:remote:338 (189 samples, 0.20%)</title><rect x="1092.1" y="101" width="2.4" height="15.0" fill="rgb(216,27,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1095.13" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:558 (285 samples, 0.30%)</title><rect x="968.4" y="101" width="3.5" height="15.0" fill="rgb(235,76,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="971.39" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:462 (219 samples, 0.23%)</title><rect x="1074.5" y="149" width="2.8" height="15.0" fill="rgb(247,190,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1077.53" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:601 (44 samples, 0.05%)</title><rect x="946.5" y="133" width="0.6" height="15.0" fill="rgb(239,113,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="949.52" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:body:505 (12 samples, 0.01%)</title><rect x="688.3" y="149" width="0.2" height="15.0" fill="rgb(219,205,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="691.35" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_r:431 (12 samples, 0.01%)</title><rect x="1103.8" y="117" width="0.2" height="15.0" fill="rgb(248,37,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1106.82" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:366 (269 samples, 0.28%)</title><rect x="1036.8" y="133" width="3.3" height="15.0" fill="rgb(239,112,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1039.78" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:575 (85 samples, 0.09%)</title><rect x="724.9" y="181" width="1.0" height="15.0" fill="rgb(215,152,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.88" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:479 (12 samples, 0.01%)</title><rect x="983.7" y="117" width="0.2" height="15.0" fill="rgb(225,78,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="986.71" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:133 (19 samples, 0.02%)</title><rect x="824.9" y="149" width="0.2" height="15.0" fill="rgb(241,217,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="827.89" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:461 (9 samples, 0.01%)</title><rect x="1074.4" y="149" width="0.1" height="15.0" fill="rgb(249,72,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1077.41" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:add_app:194 (14 samples, 0.01%)</title><rect x="882.5" y="149" width="0.2" height="15.0" fill="rgb(228,187,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="885.52" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:write_eof:109 (14 samples, 0.01%)</title><rect x="1065.3" y="133" width="0.2" height="15.0" fill="rgb(209,33,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1068.30" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1365 (16 samples, 0.02%)</title><rect x="518.3" y="213" width="0.2" height="15.0" fill="rgb(241,161,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.30" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:data_received:246 (15 samples, 0.02%)</title><rect x="804.8" y="165" width="0.1" height="15.0" fill="rgb(208,1,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="807.76" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (15 samples, 0.02%)</title><rect x="898.4" y="85" width="0.2" height="15.0" fill="rgb(212,93,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.43" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (9 samples, 0.01%)</title><rect x="820.3" y="133" width="0.1" height="15.0" fill="rgb(225,0,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="823.32" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:49 (9 samples, 0.01%)</title><rect x="679.6" y="149" width="0.1" height="15.0" fill="rgb(246,60,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.60" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:rel_url:187 (13 samples, 0.01%)</title><rect x="872.3" y="117" width="0.1" height="15.0" fill="rgb(241,8,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.26" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:486 (11 samples, 0.01%)</title><rect x="686.7" y="165" width="0.1" height="15.0" fill="rgb(252,33,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.71" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_later:544 (32 samples, 0.03%)</title><rect x="826.7" y="165" width="0.4" height="15.0" fill="rgb(225,133,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="829.73" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_s:438 (97 samples, 0.10%)</title><rect x="1128.0" y="117" width="1.2" height="15.0" fill="rgb(225,12,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1130.99" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_do_enter:74 (218 samples, 0.23%)</title><rect x="962.3" y="117" width="2.8" height="15.0" fill="rgb(233,75,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.33" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:596 (144 samples, 0.15%)</title><rect x="818.6" y="149" width="1.8" height="15.0" fill="rgb(230,168,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="821.63" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_t:422 (546 samples, 0.58%)</title><rect x="1131.2" y="117" width="6.8" height="15.0" fill="rgb(250,25,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1134.18" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1357 (78 samples, 0.08%)</title><rect x="513.5" y="213" width="1.0" height="15.0" fill="rgb(250,198,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.49" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/abc.py:__instancecheck__:183 (128 samples, 0.14%)</title><rect x="993.1" y="165" width="1.6" height="15.0" fill="rgb(210,195,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="996.08" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:167 (10 samples, 0.01%)</title><rect x="826.9" y="133" width="0.1" height="15.0" fill="rgb(252,11,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="829.88" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:167 (188 samples, 0.20%)</title><rect x="969.3" y="85" width="2.3" height="15.0" fill="rgb(233,193,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.30" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:443 (11 samples, 0.01%)</title><rect x="530.0" y="197" width="0.1" height="15.0" fill="rgb(235,45,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="533.00" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1420 (89 samples, 0.09%)</title><rect x="621.6" y="213" width="1.1" height="15.0" fill="rgb(209,195,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="624.58" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:405 (79 samples, 0.08%)</title><rect x="1069.6" y="181" width="1.0" height="15.0" fill="rgb(226,225,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1072.56" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:317 (328 samples, 0.35%)</title><rect x="1015.8" y="133" width="4.1" height="15.0" fill="rgb(239,213,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1018.80" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:561 (182 samples, 0.19%)</title><rect x="713.9" y="133" width="2.3" height="15.0" fill="rgb(253,76,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.92" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:108 (14 samples, 0.01%)</title><rect x="712.0" y="101" width="0.1" height="15.0" fill="rgb(248,79,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="714.96" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:56 (234 samples, 0.25%)</title><rect x="680.3" y="149" width="2.9" height="15.0" fill="rgb(218,132,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.31" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/urllib/parse.py:_coerce_args:122 (84 samples, 0.09%)</title><rect x="1125.7" y="53" width="1.1" height="15.0" fill="rgb(217,149,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1128.74" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:399 (769 samples, 0.81%)</title><rect x="1059.2" y="181" width="9.6" height="15.0" fill="rgb(248,83,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.23" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/abc.py:__instancecheck__:190 (105 samples, 0.11%)</title><rect x="998.5" y="165" width="1.3" height="15.0" fill="rgb(242,168,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1001.47" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:__init__:164 (23 samples, 0.02%)</title><rect x="879.9" y="117" width="0.3" height="15.0" fill="rgb(239,47,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="882.92" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_read_ready:730 (5,424 samples, 5.74%)</title><rect x="746.1" y="181" width="67.8" height="15.0" fill="rgb(218,195,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="749.09" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/d..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:105 (19 samples, 0.02%)</title><rect x="903.8" y="53" width="0.3" height="15.0" fill="rgb(228,19,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="906.81" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:freeze:217 (20 samples, 0.02%)</title><rect x="883.7" y="149" width="0.2" height="15.0" fill="rgb(209,91,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="886.68" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:357 (11 samples, 0.01%)</title><rect x="1183.8" y="149" width="0.2" height="15.0" fill="rgb(213,58,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.84" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/logging/__init__.py:getEffectiveLevel:1537 (45 samples, 0.05%)</title><rect x="1172.1" y="101" width="0.6" height="15.0" fill="rgb(231,203,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.12" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:handler:136 (9 samples, 0.01%)</title><rect x="887.3" y="133" width="0.1" height="15.0" fill="rgb(248,97,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="890.25" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:_format_line:458 (79 samples, 0.08%)</title><rect x="1076.3" y="133" width="1.0" height="15.0" fill="rgb(248,14,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.28" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:341 (8,272 samples, 8.76%)</title><rect x="887.5" y="165" width="103.4" height="15.0" fill="rgb(229,173,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="890.54" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhoda..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:prepared:64 (15 samples, 0.02%)</title><rect x="684.5" y="117" width="0.2" height="15.0" fill="rgb(218,159,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.49" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:hard_work:29 (1,890 samples, 2.00%)</title><rect x="665.5" y="181" width="23.6" height="15.0" fill="rgb(205,193,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.52" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >...</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:__init__:549 (184 samples, 0.19%)</title><rect x="950.7" y="117" width="2.3" height="15.0" fill="rgb(210,107,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="953.72" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:__init__:36 (12 samples, 0.01%)</title><rect x="977.8" y="133" width="0.1" height="15.0" fill="rgb(232,199,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.80" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (17 samples, 0.02%)</title><rect x="971.4" y="69" width="0.2" height="15.0" fill="rgb(249,190,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.44" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:212 (133 samples, 0.14%)</title><rect x="822.4" y="165" width="1.7" height="15.0" fill="rgb(243,136,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="825.43" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_timer_handle_cancelled:1333 (16 samples, 0.02%)</title><rect x="721.0" y="133" width="0.2" height="15.0" fill="rgb(237,21,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="724.04" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:hard_work:23 (3,680 samples, 3.90%)</title><rect x="911.9" y="149" width="46.0" height="15.0" fill="rgb(240,83,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.89" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >./ai..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:356 (10 samples, 0.01%)</title><rect x="827.1" y="181" width="0.2" height="15.0" fill="rgb(226,172,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="830.14" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1433 (186 samples, 0.20%)</title><rect x="1187.2" y="213" width="2.4" height="15.0" fill="rgb(244,52,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.24" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_do_exit:92 (69 samples, 0.07%)</title><rect x="663.1" y="149" width="0.9" height="15.0" fill="rgb(253,214,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="666.14" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_weakrefset.py:__contains__:72 (47 samples, 0.05%)</title><rect x="996.0" y="149" width="0.6" height="15.0" fill="rgb(215,143,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="998.99" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:357 (26 samples, 0.03%)</title><rect x="827.3" y="181" width="0.3" height="15.0" fill="rgb(212,124,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="830.27" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:477 (749 samples, 0.79%)</title><rect x="1164.0" y="149" width="9.3" height="15.0" fill="rgb(213,71,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.97" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:211 (13 samples, 0.01%)</title><rect x="909.5" y="101" width="0.2" height="15.0" fill="rgb(232,40,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.50" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/signals.py:send:31 (23 samples, 0.02%)</title><rect x="1007.0" y="133" width="0.3" height="15.0" fill="rgb(218,138,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.97" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:365 (26 samples, 0.03%)</title><rect x="832.4" y="181" width="0.4" height="15.0" fill="rgb(254,5,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="835.43" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:_write:52 (28 samples, 0.03%)</title><rect x="1042.7" y="101" width="0.4" height="15.0" fill="rgb(217,62,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1045.75" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:436 (96 samples, 0.10%)</title><rect x="524.8" y="197" width="1.2" height="15.0" fill="rgb(240,199,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.77" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:write_eof:118 (14 samples, 0.01%)</title><rect x="1065.5" y="133" width="0.2" height="15.0" fill="rgb(225,227,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1068.48" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:110 (27 samples, 0.03%)</title><rect x="1185.2" y="133" width="0.3" height="15.0" fill="rgb(218,183,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.15" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:create_task:286 (22 samples, 0.02%)</title><rect x="945.7" y="101" width="0.3" height="15.0" fill="rgb(235,2,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="948.73" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:456 (19 samples, 0.02%)</title><rect x="548.4" y="197" width="0.2" height="15.0" fill="rgb(234,135,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.37" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:405 (13 samples, 0.01%)</title><rect x="1068.6" y="149" width="0.2" height="15.0" fill="rgb(244,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.63" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:get_event_loop:691 (219 samples, 0.23%)</title><rect x="893.4" y="101" width="2.7" height="15.0" fill="rgb(213,0,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="896.35" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:279 (53 samples, 0.06%)</title><rect x="868.5" y="133" width="0.7" height="15.0" fill="rgb(254,96,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="871.53" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:357 (11 samples, 0.01%)</title><rect x="968.1" y="85" width="0.1" height="15.0" fill="rgb(209,168,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="971.07" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_read_ready:741 (10 samples, 0.01%)</title><rect x="813.9" y="181" width="0.1" height="15.0" fill="rgb(219,23,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.87" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__lt__:183 (30 samples, 0.03%)</title><rect x="514.1" y="197" width="0.4" height="15.0" fill="rgb(227,106,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="517.09" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:365 (22 samples, 0.02%)</title><rect x="1036.5" y="133" width="0.3" height="15.0" fill="rgb(246,21,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1039.51" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:105 (10 samples, 0.01%)</title><rect x="987.4" y="53" width="0.2" height="15.0" fill="rgb(232,48,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="990.43" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1363 (16 samples, 0.02%)</title><rect x="516.3" y="213" width="0.2" height="15.0" fill="rgb(236,20,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.27" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:data_received:224 (47 samples, 0.05%)</title><rect x="747.7" y="165" width="0.6" height="15.0" fill="rgb(219,194,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="750.69" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:99 (12 samples, 0.01%)</title><rect x="791.4" y="149" width="0.1" height="15.0" fill="rgb(247,39,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.39" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:hard_work:27 (32 samples, 0.03%)</title><rect x="664.1" y="181" width="0.4" height="15.0" fill="rgb(233,107,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.07" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:_match:328 (47 samples, 0.05%)</title><rect x="872.4" y="117" width="0.6" height="15.0" fill="rgb(252,192,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.42" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:107 (14 samples, 0.01%)</title><rect x="728.0" y="149" width="0.1" height="15.0" fill="rgb(206,23,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="730.97" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:109 (11 samples, 0.01%)</title><rect x="712.1" y="101" width="0.2" height="15.0" fill="rgb(225,100,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="715.13" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:579 (338 samples, 0.36%)</title><rect x="726.1" y="181" width="4.2" height="15.0" fill="rgb(239,129,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="729.08" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:log:469 (113 samples, 0.12%)</title><rect x="1159.0" y="149" width="1.4" height="15.0" fill="rgb(254,5,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1161.99" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:391 (719 samples, 0.76%)</title><rect x="990.9" y="181" width="9.0" height="15.0" fill="rgb(236,33,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.92" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:_done_callback:639 (366 samples, 0.39%)</title><rect x="816.4" y="181" width="4.5" height="15.0" fill="rgb(253,91,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="819.37" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:458 (14 samples, 0.01%)</title><rect x="550.8" y="197" width="0.2" height="15.0" fill="rgb(224,108,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.78" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:__init__:166 (18 samples, 0.02%)</title><rect x="880.7" y="117" width="0.2" height="15.0" fill="rgb(246,15,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="883.72" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/futures.py:_set_result_unless_cancelled:341 (57 samples, 0.06%)</title><rect x="730.6" y="181" width="0.7" height="15.0" fill="rgb(206,133,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.58" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:create_task:283 (70 samples, 0.07%)</title><rect x="930.7" y="101" width="0.9" height="15.0" fill="rgb(206,139,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.75" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:build:212 (18 samples, 0.02%)</title><rect x="795.5" y="149" width="0.2" height="15.0" fill="rgb(208,100,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.51" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (11 samples, 0.01%)</title><rect x="905.3" y="53" width="0.2" height="15.0" fill="rgb(217,206,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="908.34" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:drain:142 (93 samples, 0.10%)</title><rect x="1066.6" y="117" width="1.2" height="15.0" fill="rgb(228,107,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.64" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:441 (322 samples, 0.34%)</title><rect x="526.0" y="197" width="4.0" height="15.0" fill="rgb(213,25,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.97" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:469 (159 samples, 0.17%)</title><rect x="672.6" y="165" width="2.0" height="15.0" fill="rgb(254,207,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="675.57" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:171 (11 samples, 0.01%)</title><rect x="971.8" y="85" width="0.1" height="15.0" fill="rgb(221,120,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.81" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_make_request:299 (603 samples, 0.64%)</title><rect x="846.6" y="165" width="7.5" height="15.0" fill="rgb(239,153,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="849.58" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:109 (11 samples, 0.01%)</title><rect x="970.7" y="69" width="0.1" height="15.0" fill="rgb(237,28,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.71" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:599 (23 samples, 0.02%)</title><rect x="820.5" y="149" width="0.3" height="15.0" fill="rgb(235,174,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="823.52" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:_prepare_hook:686 (318 samples, 0.34%)</title><rect x="1004.7" y="149" width="4.0" height="15.0" fill="rgb(222,223,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1007.74" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:600 (9 samples, 0.01%)</title><rect x="741.2" y="149" width="0.2" height="15.0" fill="rgb(226,118,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="744.25" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:558 (509 samples, 0.54%)</title><rect x="707.4" y="133" width="6.4" height="15.0" fill="rgb(241,147,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="710.42" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:__init__:29 (9 samples, 0.01%)</title><rect x="838.1" y="165" width="0.1" height="15.0" fill="rgb(207,169,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="841.12" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:579 (393 samples, 0.42%)</title><rect x="940.3" y="85" width="5.0" height="15.0" fill="rgb(217,166,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.34" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_add_callback:1323 (75 samples, 0.08%)</title><rect x="557.0" y="181" width="0.9" height="15.0" fill="rgb(226,25,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.95" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:_do_enter:83 (98 samples, 0.10%)</title><rect x="965.5" y="117" width="1.2" height="15.0" fill="rgb(238,29,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.47" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:484 (848 samples, 0.90%)</title><rect x="676.1" y="165" width="10.6" height="15.0" fill="rgb(224,18,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="679.11" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:358 (31 samples, 0.03%)</title><rect x="1036.1" y="133" width="0.4" height="15.0" fill="rgb(230,19,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1039.12" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:576 (9 samples, 0.01%)</title><rect x="818.3" y="165" width="0.1" height="15.0" fill="rgb(231,78,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="821.33" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:644 (59 samples, 0.06%)</title><rect x="893.6" y="85" width="0.7" height="15.0" fill="rgb(238,16,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="896.58" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_run:145 (44,688 samples, 47.33%)</title><rect x="627.8" y="197" width="558.5" height="15.0" fill="rgb(223,192,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="630.80" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/asyncio/events.py:_run:145</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:build:222 (345 samples, 0.37%)</title><rect x="799.1" y="149" width="4.4" height="15.0" fill="rgb(237,226,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.15" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:491 (19 samples, 0.02%)</title><rect x="688.9" y="165" width="0.2" height="15.0" fill="rgb(246,78,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="691.90" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:358 (11 samples, 0.01%)</title><rect x="725.8" y="165" width="0.1" height="15.0" fill="rgb(234,47,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.80" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/logging/__init__.py:getEffectiveLevel:1539 (19 samples, 0.02%)</title><rect x="1172.9" y="101" width="0.3" height="15.0" fill="rgb(209,84,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.92" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:431 (18 samples, 0.02%)</title><rect x="524.4" y="197" width="0.3" height="15.0" fill="rgb(229,111,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.45" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:write:761 (155 samples, 0.16%)</title><rect x="1047.9" y="85" width="1.9" height="15.0" fill="rgb(209,6,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.89" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:content_length:739 (17 samples, 0.02%)</title><rect x="1028.7" y="85" width="0.2" height="15.0" fill="rgb(236,229,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.66" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/urllib/parse.py:urlunsplit:468 (560 samples, 0.59%)</title><rect x="1119.8" y="69" width="7.0" height="15.0" fill="rgb(218,48,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1122.82" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (19 samples, 0.02%)</title><rect x="944.0" y="37" width="0.2" height="15.0" fill="rgb(234,106,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="947.00" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:478 (55 samples, 0.06%)</title><rect x="898.6" y="117" width="0.7" height="15.0" fill="rgb(241,188,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.61" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:289 (40 samples, 0.04%)</title><rect x="876.2" y="133" width="0.5" height="15.0" fill="rgb(245,75,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="879.18" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:450 (161 samples, 0.17%)</title><rect x="543.0" y="197" width="2.0" height="15.0" fill="rgb(240,117,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.96" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:_done_callback:624 (26 samples, 0.03%)</title><rect x="814.7" y="181" width="0.3" height="15.0" fill="rgb(236,3,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="817.66" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:build:220 (257 samples, 0.27%)</title><rect x="795.9" y="149" width="3.2" height="15.0" fill="rgb(213,61,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.94" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/async_timeout/__init__.py:__aexit__:55 (245 samples, 0.26%)</title><rect x="661.0" y="165" width="3.1" height="15.0" fill="rgb(233,7,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="664.01" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:596 (293 samples, 0.31%)</title><rect x="940.8" y="69" width="3.7" height="15.0" fill="rgb(238,101,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.83" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (16 samples, 0.02%)</title><rect x="988.4" y="53" width="0.2" height="15.0" fill="rgb(225,35,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="991.41" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_check_closed:357 (20 samples, 0.02%)</title><rect x="725.6" y="165" width="0.2" height="15.0" fill="rgb(220,48,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.55" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:110 (54 samples, 0.06%)</title><rect x="728.5" y="149" width="0.7" height="15.0" fill="rgb(206,90,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="731.49" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:94 (13 samples, 0.01%)</title><rect x="790.0" y="149" width="0.2" height="15.0" fill="rgb(207,26,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.99" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:__new__:181 (34 samples, 0.04%)</title><rect x="802.6" y="133" width="0.4" height="15.0" fill="rgb(226,54,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.62" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:599 (48 samples, 0.05%)</title><rect x="740.6" y="149" width="0.6" height="15.0" fill="rgb(214,189,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="743.65" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:599 (45 samples, 0.05%)</title><rect x="729.6" y="165" width="0.6" height="15.0" fill="rgb(216,148,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.61" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1373 (94 samples, 0.10%)</title><rect x="519.6" y="213" width="1.2" height="15.0" fill="rgb(238,30,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.65" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1375 (26 samples, 0.03%)</title><rect x="520.8" y="213" width="0.3" height="15.0" fill="rgb(247,128,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.82" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/urllib/parse.py:_coerce_args:115 (75 samples, 0.08%)</title><rect x="1122.0" y="53" width="1.0" height="15.0" fill="rgb(219,193,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1125.02" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web.py:run_app:120 (54,673 samples, 57.90%)</title><rect x="506.7" y="245" width="683.3" height="15.0" fill="rgb(209,60,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.74" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/aiohttp/web.py:run_app:120</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:95 (81 samples, 0.09%)</title><rect x="790.2" y="149" width="1.0" height="15.0" fill="rgb(239,198,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.15" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:run_forever:422 (54,638 samples, 57.87%)</title><rect x="506.7" y="229" width="682.9" height="15.0" fill="rgb(254,211,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.74" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/asyncio/base_events.py:run_forever:422</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/logging/__init__.py:isEnabledFor:1548 (164 samples, 0.17%)</title><rect x="1171.2" y="117" width="2.0" height="15.0" fill="rgb(225,32,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1174.19" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:328 (16 samples, 0.02%)</title><rect x="1022.8" y="133" width="0.2" height="15.0" fill="rgb(235,132,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1025.77" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:prepare:299 (595 samples, 0.63%)</title><rect x="1001.3" y="165" width="7.4" height="15.0" fill="rgb(240,225,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1004.28" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:108 (10 samples, 0.01%)</title><rect x="738.9" y="133" width="0.1" height="15.0" fill="rgb(235,85,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="741.85" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:content_length:560 (97 samples, 0.10%)</title><rect x="1024.3" y="117" width="1.2" height="15.0" fill="rgb(252,121,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1027.29" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:drain:141 (33 samples, 0.03%)</title><rect x="1066.2" y="117" width="0.4" height="15.0" fill="rgb(223,228,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.23" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><string>:__new__:14 (99 samples, 0.10%)</title><rect x="803.5" y="149" width="1.3" height="15.0" fill="rgb(209,202,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="806.52" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:477 (291 samples, 0.31%)</title><rect x="698.3" y="165" width="3.7" height="15.0" fill="rgb(226,106,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.35" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:482 (133 samples, 0.14%)</title><rect x="717.4" y="165" width="1.6" height="15.0" fill="rgb(209,111,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="720.36" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:645 (213 samples, 0.23%)</title><rect x="695.5" y="133" width="2.7" height="15.0" fill="rgb(253,95,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="698.51" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_later:547 (11 samples, 0.01%)</title><rect x="717.2" y="149" width="0.1" height="15.0" fill="rgb(207,164,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="720.18" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:ensure_future:519 (1,286 samples, 1.36%)</title><rect x="930.0" y="117" width="16.1" height="15.0" fill="rgb(232,220,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.01" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:109 (17 samples, 0.02%)</title><rect x="728.3" y="149" width="0.2" height="15.0" fill="rgb(245,123,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="731.28" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:582 (11 samples, 0.01%)</title><rect x="730.4" y="181" width="0.2" height="15.0" fill="rgb(248,97,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.44" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:hard_work:28 (84 samples, 0.09%)</title><rect x="664.5" y="181" width="1.0" height="15.0" fill="rgb(219,14,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.47" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:605 (3,650 samples, 3.87%)</title><rect x="1013.6" y="149" width="45.6" height="15.0" fill="rgb(233,89,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1016.61" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/hom..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:__init__:109 (21 samples, 0.02%)</title><rect x="789.0" y="149" width="0.2" height="15.0" fill="rgb(254,149,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.95" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1397 (670 samples, 0.71%)</title><rect x="551.0" y="213" width="8.3" height="15.0" fill="rgb(235,171,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.95" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:keep_alive:436 (90 samples, 0.10%)</title><rect x="1018.8" y="117" width="1.1" height="15.0" fill="rgb(227,23,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1021.78" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:is_eof:174 (30 samples, 0.03%)</title><rect x="1174.7" y="165" width="0.4" height="15.0" fill="rgb(220,184,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1177.70" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/urllib/parse.py:_coerce_args:116 (130 samples, 0.14%)</title><rect x="1123.0" y="53" width="1.6" height="15.0" fill="rgb(236,116,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1125.95" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:_start:367 (1,525 samples, 1.62%)</title><rect x="1040.1" y="133" width="19.1" height="15.0" fill="rgb(250,84,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1043.15" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_at:554 (31 samples, 0.03%)</title><rect x="901.6" y="85" width="0.4" height="15.0" fill="rgb(214,118,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="904.63" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:set_status:90 (72 samples, 0.08%)</title><rect x="684.7" y="133" width="0.9" height="15.0" fill="rgb(214,190,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.67" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (20 samples, 0.02%)</title><rect x="945.5" y="85" width="0.2" height="15.0" fill="rgb(217,196,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="948.48" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:170 (10 samples, 0.01%)</title><rect x="971.7" y="85" width="0.1" height="15.0" fill="rgb(226,181,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.69" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:remote:339 (77 samples, 0.08%)</title><rect x="1094.5" y="101" width="1.0" height="15.0" fill="rgb(252,144,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1097.50" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:612 (309 samples, 0.33%)</title><rect x="949.7" y="133" width="3.8" height="15.0" fill="rgb(219,22,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="952.65" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/logging/__init__.py:getEffectiveLevel:1538 (19 samples, 0.02%)</title><rect x="1172.7" y="101" width="0.2" height="15.0" fill="rgb(212,72,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.68" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__lt__:183 (59 samples, 0.06%)</title><rect x="517.6" y="197" width="0.7" height="15.0" fill="rgb(237,61,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.56" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:402 (58 samples, 0.06%)</title><rect x="1068.8" y="181" width="0.8" height="15.0" fill="rgb(229,154,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.84" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:sleep:480 (679 samples, 0.72%)</title><rect x="899.6" y="117" width="8.4" height="15.0" fill="rgb(233,60,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.55" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/yarl/__init__.py:__new__:151 (28 samples, 0.03%)</title><rect x="801.7" y="133" width="0.4" height="15.0" fill="rgb(245,119,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.72" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:write_headers:100 (698 samples, 0.74%)</title><rect x="1042.0" y="117" width="8.7" height="15.0" fill="rgb(232,124,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1044.98" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:433 (251 samples, 0.27%)</title><rect x="1175.1" y="181" width="3.1" height="15.0" fill="rgb(237,75,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.08" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1344 (152 samples, 0.16%)</title><rect x="508.9" y="213" width="1.9" height="15.0" fill="rgb(210,213,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.85" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (15 samples, 0.02%)</title><rect x="830.8" y="149" width="0.2" height="15.0" fill="rgb(251,87,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="833.80" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/helpers.py:rfc822_formatted_time:566 (20 samples, 0.02%)</title><rect x="1034.6" y="117" width="0.2" height="15.0" fill="rgb(223,98,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1037.58" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/coroutines.py:iscoroutine:272 (60 samples, 0.06%)</title><rect x="926.3" y="101" width="0.7" height="15.0" fill="rgb(223,189,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="929.27" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:575 (30 samples, 0.03%)</title><rect x="1183.6" y="165" width="0.4" height="15.0" fill="rgb(221,17,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.64" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:data_received:249 (73 samples, 0.08%)</title><rect x="805.2" y="165" width="0.9" height="15.0" fill="rgb(245,152,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="808.22" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:580 (13 samples, 0.01%)</title><rect x="741.4" y="165" width="0.1" height="15.0" fill="rgb(231,13,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="744.36" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:452 (35 samples, 0.04%)</title><rect x="545.0" y="197" width="0.4" height="15.0" fill="rgb(242,175,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.97" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:__init__:461 (44 samples, 0.05%)</title><rect x="671.9" y="165" width="0.5" height="15.0" fill="rgb(214,213,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="674.87" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:107 (13 samples, 0.01%)</title><rect x="942.9" y="53" width="0.1" height="15.0" fill="rgb(227,87,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.88" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:write:747 (12 samples, 0.01%)</title><rect x="1047.1" y="85" width="0.2" height="15.0" fill="rgb(253,187,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.11" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_request.py:__init__:100 (9 samples, 0.01%)</title><rect x="850.3" y="133" width="0.1" height="15.0" fill="rgb(236,21,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="853.29" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_app.py:_handle:315 (10 samples, 0.01%)</title><rect x="881.7" y="165" width="0.1" height="15.0" fill="rgb(254,172,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="884.66" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (19 samples, 0.02%)</title><rect x="712.9" y="85" width="0.3" height="15.0" fill="rgb(236,35,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="715.93" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:cancel:135 (29 samples, 0.03%)</title><rect x="825.3" y="149" width="0.3" height="15.0" fill="rgb(237,171,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="828.27" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__lt__:183 (25 samples, 0.03%)</title><rect x="989.7" y="69" width="0.4" height="15.0" fill="rgb(251,167,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="992.74" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:get_debug:1469 (20 samples, 0.02%)</title><rect x="723.8" y="117" width="0.3" height="15.0" fill="rgb(253,112,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="726.84" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:_done_callback:629 (23 samples, 0.02%)</title><rect x="815.0" y="181" width="0.3" height="15.0" fill="rgb(207,103,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="817.98" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:575 (43 samples, 0.05%)</title><rect x="809.3" y="149" width="0.6" height="15.0" fill="rgb(240,180,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="812.32" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:_done_callback:637 (15 samples, 0.02%)</title><rect x="816.0" y="181" width="0.2" height="15.0" fill="rgb(223,229,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="819.05" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:time:526 (25 samples, 0.03%)</title><rect x="990.1" y="85" width="0.3" height="15.0" fill="rgb(215,72,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.13" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:resolve:803 (28 samples, 0.03%)</title><rect x="881.3" y="149" width="0.3" height="15.0" fill="rgb(233,115,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="884.28" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:write_eof:584 (9 samples, 0.01%)</title><rect x="1060.5" y="165" width="0.1" height="15.0" fill="rgb(220,119,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.53" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_call_soon:599 (19 samples, 0.02%)</title><rect x="813.2" y="133" width="0.3" height="15.0" fill="rgb(211,199,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.23" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/tasks.py:gather:594 (150 samples, 0.16%)</title><rect x="915.5" y="133" width="1.9" height="15.0" fill="rgb(215,143,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="918.51" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./aiohttp_server.py:hard_work:25 (1,604 samples, 1.70%)</title><rect x="957.9" y="149" width="20.0" height="15.0" fill="rgb(231,176,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="960.90" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_timer_handle_cancelled:1334 (66 samples, 0.07%)</title><rect x="823.3" y="149" width="0.8" height="15.0" fill="rgb(215,33,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="826.27" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1346 (94 samples, 0.10%)</title><rect x="511.3" y="213" width="1.2" height="15.0" fill="rgb(209,14,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.30" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:__init__:30 (16 samples, 0.02%)</title><rect x="838.2" y="165" width="0.2" height="15.0" fill="rgb(239,161,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="841.23" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:108 (11 samples, 0.01%)</title><rect x="728.1" y="149" width="0.2" height="15.0" fill="rgb(206,201,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="731.14" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1415 (82 samples, 0.09%)</title><rect x="599.0" y="213" width="1.0" height="15.0" fill="rgb(223,216,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="601.99" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_urldispatcher.py:__init__:163 (25 samples, 0.03%)</title><rect x="879.6" y="117" width="0.3" height="15.0" fill="rgb(205,212,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="882.61" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:_run_once:1418 (139 samples, 0.15%)</title><rect x="619.8" y="213" width="1.8" height="15.0" fill="rgb(223,89,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.84" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:108 (9 samples, 0.01%)</title><rect x="1185.0" y="133" width="0.1" height="15.0" fill="rgb(223,225,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.98" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_protocol.py:start:360 (268 samples, 0.28%)</title><rect x="827.6" y="181" width="3.4" height="15.0" fill="rgb(241,144,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="830.64" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/streams.py:set_exception:132 (15 samples, 0.02%)</title><rect x="1177.7" y="165" width="0.2" height="15.0" fill="rgb(228,202,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.72" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/selectors.py:select:457 (174 samples, 0.18%)</title><rect x="548.6" y="197" width="2.2" height="15.0" fill="rgb(231,31,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.61" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/http_writer.py:_write:53 (35 samples, 0.04%)</title><rect x="1043.1" y="101" width="0.4" height="15.0" fill="rgb(227,200,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1046.10" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/aiohttp/web_response.py:set_status:87 (60 samples, 0.06%)</title><rect x="683.9" y="133" width="0.8" height="15.0" fill="rgb(231,154,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="686.93" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment