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="582" onload="init(evt)" viewBox="0 0 1200 582" 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="582.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="565" 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="565" 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>/tornado/stack_context.py:wrap:303 (47 samples, 0.07%)</title><rect x="158.4" y="357" width="0.8" height="15.0" fill="rgb(212,190,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="161.40" y="367.5" font-size="12" 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 (37 samples, 0.06%)</title><rect x="1022.0" y="85" width="0.7" height="15.0" fill="rgb(227,33,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1025.04" 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_at:554 (8 samples, 0.01%)</title><rect x="267.1" y="357" width="0.2" height="15.0" fill="rgb(223,225,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.13" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:wrapper:803 (153 samples, 0.23%)</title><rect x="750.3" y="245" width="2.7" height="15.0" fill="rgb(213,164,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="753.27" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:__init__:1062 (19 samples, 0.03%)</title><rect x="795.9" y="277" width="0.4" height="15.0" fill="rgb(209,98,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.95" 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/base_events.py:call_at:558 (13 samples, 0.02%)</title><rect x="532.9" y="261" width="0.3" height="15.0" fill="rgb(237,107,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.92" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:_has_stream_request_body:1811 (66 samples, 0.10%)</title><rect x="896.0" y="85" width="1.1" height="15.0" fill="rgb(206,188,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="898.96" 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__:167 (151 samples, 0.23%)</title><rect x="268.5" y="341" width="2.7" height="15.0" fill="rgb(237,177,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.54" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:dispatch:778 (40 samples, 0.06%)</title><rect x="801.1" y="229" width="0.7" height="15.0" fill="rgb(227,36,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.12" 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> /tornado/stack_context.py:wrap:292 (17 samples, 0.03%)</title><rect x="273.1" y="373" width="0.3" height="15.0" fill="rgb(240,125,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.10" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:match:469 (42 samples, 0.06%)</title><rect x="867.6" y="181" width="0.7" height="15.0" fill="rgb(253,123,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="870.55" 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>/_collections_abc.py:update:848 (37 samples, 0.06%)</title><rect x="816.0" y="181" width="0.6" height="15.0" fill="rgb(215,25,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="818.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> /tornado/gen.py:__init__:399 (17 samples, 0.03%)</title><rect x="451.1" y="357" width="0.3" height="15.0" fill="rgb(216,57,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.07" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./tornado_server.py:get:39 (1,715 samples, 2.60%)</title><rect x="128.7" y="437" width="30.6" height="15.0" fill="rgb(247,6,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="131.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >./..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_handle_events:696 (17 samples, 0.03%)</title><rect x="564.3" y="405" width="0.4" height="15.0" fill="rgb(206,74,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.35" y="415.5" font-size="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:register:405 (245 samples, 0.37%)</title><rect x="1128.0" y="133" width="4.4" height="15.0" fill="rgb(224,68,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1130.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> /tornado/http1connection.py:_read_message:158 (10 samples, 0.02%)</title><rect x="696.4" y="277" width="0.2" height="15.0" fill="rgb(220,141,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="699.43" 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/base_events.py:call_soon_threadsafe:627 (34 samples, 0.05%)</title><rect x="507.5" y="341" width="0.6" height="15.0" fill="rgb(243,217,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.53" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:future_set_exc_info:630 (41 samples, 0.06%)</title><rect x="538.2" y="341" width="0.7" height="15.0" fill="rgb(218,120,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="541.15" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:future_add_done_callback:649 (8 samples, 0.01%)</title><rect x="759.2" y="229" width="0.2" height="15.0" fill="rgb(246,116,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.22" 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> /tornado/iostream.py:_maybe_run_close_callback:646 (19 samples, 0.03%)</title><rect x="490.0" y="261" width="0.3" height="15.0" fill="rgb(250,5,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.96" y="271.5" font-size="12" 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 (14 samples, 0.02%)</title><rect x="1108.6" y="133" width="0.2" height="15.0" fill="rgb(231,101,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.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> /tornado/gen.py:with_timeout:982 (1,044 samples, 1.58%)</title><rect x="257.4" y="421" width="18.7" height="15.0" fill="rgb(231,128,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="260.44" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:accept:209 (1,014 samples, 1.53%)</title><rect x="596.4" y="389" width="18.1" height="15.0" fill="rgb(240,100,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="599.40" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:write_headers:399 (25 samples, 0.04%)</title><rect x="482.3" y="325" width="0.4" height="15.0" fill="rgb(209,42,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.30" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:clear:294 (207 samples, 0.31%)</title><rect x="432.8" y="293" width="3.7" height="15.0" fill="rgb(225,203,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.82" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:287 (22 samples, 0.03%)</title><rect x="1169.5" y="277" width="0.4" height="15.0" fill="rgb(226,205,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.54" 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> /tornado/iostream.py:set_close_callback:606 (30 samples, 0.05%)</title><rect x="542.3" y="293" width="0.6" height="15.0" fill="rgb(245,105,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.32" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_has_stream_request_body:1811 (7 samples, 0.01%)</title><rect x="440.5" y="277" width="0.1" height="15.0" fill="rgb(210,64,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.46" 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> /tornado/httputil.py:__setitem__:225 (7 samples, 0.01%)</title><rect x="421.4" y="293" width="0.1" height="15.0" fill="rgb(238,225,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.39" y="303.5" font-size="12" 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:_add_reader:264 (516 samples, 0.78%)</title><rect x="735.1" y="181" width="9.2" height="15.0" fill="rgb(211,142,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="738.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> /tornado/gen.py:wrapper:318 (175 samples, 0.26%)</title><rect x="664.2" y="341" width="3.1" height="15.0" fill="rgb(205,210,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.18" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:headers_received:242 (14 samples, 0.02%)</title><rect x="540.2" y="293" width="0.3" height="15.0" fill="rgb(223,163,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.21" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_find_read_pos:1002 (8 samples, 0.01%)</title><rect x="704.5" y="229" width="0.1" height="15.0" fill="rgb(206,160,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.47" 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> /tornado/gen.py:_create_future:187 (31 samples, 0.05%)</title><rect x="437.7" y="293" width="0.5" height="15.0" fill="rgb(250,143,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.66" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:handle_yield:1186 (62 samples, 0.09%)</title><rect x="799.1" y="261" width="1.1" height="15.0" fill="rgb(243,153,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.05" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__getitem__:229 (48 samples, 0.07%)</title><rect x="454.0" y="325" width="0.8" height="15.0" fill="rgb(216,154,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.98" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_add_io_state:1155 (34 samples, 0.05%)</title><rect x="1081.4" y="197" width="0.6" height="15.0" fill="rgb(216,175,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1084.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/base_events.py:time:526 (25 samples, 0.04%)</title><rect x="354.2" y="357" width="0.4" height="15.0" fill="rgb(253,164,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.18" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:get:660 (18 samples, 0.03%)</title><rect x="902.1" y="213" width="0.3" height="15.0" fill="rgb(223,20,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="905.12" 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> /tornado/httputil.py:__init__:364 (9 samples, 0.01%)</title><rect x="844.0" y="213" width="0.1" height="15.0" fill="rgb(212,24,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="846.96" 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> /tornado/iostream.py:_maybe_add_error_listener:1124 (6 samples, 0.01%)</title><rect x="534.4" y="293" width="0.1" height="15.0" fill="rgb(240,163,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="537.35" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:_format_timetuple_and_zone:130 (11 samples, 0.02%)</title><rect x="954.7" y="101" width="0.2" height="15.0" fill="rgb(234,219,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="957.74" 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:ensure_future:518 (56 samples, 0.08%)</title><rect x="225.5" y="373" width="1.0" height="15.0" fill="rgb(231,100,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="228.51" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:get_handler_delegate:2126 (33 samples, 0.05%)</title><rect x="429.1" y="245" width="0.6" height="15.0" fill="rgb(242,51,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.09" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:264 (41 samples, 0.06%)</title><rect x="450.8" y="373" width="0.7" height="15.0" fill="rgb(236,152,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.80" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_run_close_callback:666 (7 samples, 0.01%)</title><rect x="519.6" y="309" width="0.1" height="15.0" fill="rgb(230,121,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.60" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:__init__:183 (256 samples, 0.39%)</title><rect x="913.1" y="181" width="4.6" height="15.0" fill="rgb(207,146,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.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> /tornado/gen.py:multi:773 (3,050 samples, 4.62%)</title><rect x="161.4" y="421" width="54.4" height="15.0" fill="rgb(218,53,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.35" y="431.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> /tornado/gen.py:wrapper:327 (8 samples, 0.01%)</title><rect x="795.0" y="293" width="0.1" height="15.0" fill="rgb(207,1,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.98" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:headers_received:239 (11 samples, 0.02%)</title><rect x="840.8" y="229" width="0.2" height="15.0" fill="rgb(226,71,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="843.77" 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> /tornado/iostream.py:close:634 (6 samples, 0.01%)</title><rect x="715.9" y="197" width="0.1" height="15.0" fill="rgb(218,36,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="718.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>/asyncio/events.py:get_event_loop:691 (73 samples, 0.11%)</title><rect x="633.1" y="325" width="1.3" height="15.0" fill="rgb(246,211,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="636.06" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:get_target_delegate:1886 (1,489 samples, 2.25%)</title><rect x="870.6" y="181" width="26.6" height="15.0" fill="rgb(210,171,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="873.62" 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> /tornado/iostream.py:_try_inline_read:907 (45 samples, 0.07%)</title><rect x="704.3" y="245" width="0.8" height="15.0" fill="rgb(207,40,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.29" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:future_set_result_unless_cancelled:619 (246 samples, 0.37%)</title><rect x="407.6" y="389" width="4.4" height="15.0" fill="rgb(216,44,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="410.62" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:copy:593 (8 samples, 0.01%)</title><rect x="759.6" y="213" width="0.1" height="15.0" fill="rgb(219,15,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.57" 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> /tornado/iostream.py:__init__:1220 (41 samples, 0.06%)</title><rect x="629.7" y="373" width="0.7" height="15.0" fill="rgb(246,95,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="632.67" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:flush:971 (6 samples, 0.01%)</title><rect x="469.6" y="341" width="0.1" height="15.0" fill="rgb(235,64,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.62" y="351.5" font-size="12" 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 (350 samples, 0.53%)</title><rect x="788.7" y="197" width="6.3" height="15.0" fill="rgb(236,83,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.71" 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> /tornado/stack_context.py:wrap:292 (35 samples, 0.05%)</title><rect x="356.4" y="373" width="0.6" height="15.0" fill="rgb(245,29,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.36" y="383.5" font-size="12" 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 (30 samples, 0.05%)</title><rect x="344.1" y="357" width="0.6" height="15.0" fill="rgb(227,210,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="347.13" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__init__:139 (8 samples, 0.01%)</title><rect x="922.3" y="149" width="0.1" height="15.0" fill="rgb(227,125,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="925.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> /tornado/iostream.py:__init__:1222 (638 samples, 0.97%)</title><rect x="630.9" y="373" width="11.4" height="15.0" fill="rgb(208,183,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="633.86" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:__contains__:668 (15 samples, 0.02%)</title><rect x="828.6" y="165" width="0.3" height="15.0" fill="rgb(247,154,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="831.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> /tornado/gen.py:__init__:1071 (74 samples, 0.11%)</title><rect x="797.0" y="277" width="1.4" height="15.0" fill="rgb(212,138,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.04" 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> /tornado/gen.py:run:1133 (20 samples, 0.03%)</title><rect x="415.0" y="389" width="0.4" height="15.0" fill="rgb(247,22,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.04" y="399.5" font-size="12" 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 (22 samples, 0.03%)</title><rect x="524.0" y="309" width="0.4" height="15.0" fill="rgb(234,212,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.99" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_execute:1562 (17 samples, 0.03%)</title><rect x="440.0" y="293" width="0.3" height="15.0" fill="rgb(235,165,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.00" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:handle_yield:1227 (211 samples, 0.32%)</title><rect x="505.3" y="373" width="3.8" height="15.0" fill="rgb(252,41,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.33" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:292 (45 samples, 0.07%)</title><rect x="1182.8" y="325" width="0.8" height="15.0" fill="rgb(232,132,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.80" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:multi_future:899 (365 samples, 0.55%)</title><rect x="208.6" y="405" width="6.5" height="15.0" fill="rgb(238,170,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="211.56" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_clear_callbacks:276 (98 samples, 0.15%)</title><rect x="488.9" y="309" width="1.8" height="15.0" fill="rgb(252,80,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.92" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:handle_yield:1189 (10 samples, 0.02%)</title><rect x="1011.4" y="149" width="0.2" height="15.0" fill="rgb(249,178,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1014.42" 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 (7 samples, 0.01%)</title><rect x="369.6" y="389" width="0.1" height="15.0" fill="rgb(242,60,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.61" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_to_buffer_loop:827 (6 samples, 0.01%)</title><rect x="721.0" y="229" width="0.1" height="15.0" fill="rgb(212,30,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="723.97" 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/base_events.py:create_task:286 (10 samples, 0.02%)</title><rect x="1059.8" y="85" width="0.1" height="15.0" fill="rgb(250,179,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.76" 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>/_collections_abc.py:get:660 (34 samples, 0.05%)</title><rect x="462.0" y="325" width="0.6" height="15.0" fill="rgb(249,197,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="465.00" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_run_read_callback:883 (8 samples, 0.01%)</title><rect x="729.5" y="213" width="0.2" height="15.0" fill="rgb(235,50,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.52" 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> /tornado/httputil.py:__getitem__:229 (17 samples, 0.03%)</title><rect x="899.6" y="213" width="0.3" height="15.0" fill="rgb(248,5,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.57" 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:create_task:285 (6 samples, 0.01%)</title><rect x="541.6" y="149" width="0.1" height="15.0" fill="rgb(237,162,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.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> /tornado/gen.py:convert_yielded:1360 (61 samples, 0.09%)</title><rect x="1019.7" y="117" width="1.1" height="15.0" fill="rgb(226,192,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1022.74" 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>/socket.py:family:433 (315 samples, 0.48%)</title><rect x="645.5" y="341" width="5.6" height="15.0" fill="rgb(240,226,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.51" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:__init__:124 (207 samples, 0.31%)</title><rect x="680.0" y="309" width="3.7" height="15.0" fill="rgb(212,31,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.99" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_parse_headers:534 (8 samples, 0.01%)</title><rect x="830.7" y="229" width="0.1" height="15.0" fill="rgb(230,110,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="833.68" 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> /tornado/stack_context.py:wrap:292 (26 samples, 0.04%)</title><rect x="1169.9" y="277" width="0.5" height="15.0" fill="rgb(239,223,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.93" 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> /tornado/http1connection.py:_finish_request:521 (12 samples, 0.02%)</title><rect x="490.8" y="325" width="0.2" height="15.0" fill="rgb(208,137,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.84" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_server_request_loop:731 (15 samples, 0.02%)</title><rect x="668.1" y="325" width="0.2" height="15.0" fill="rgb(242,223,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.08" y="335.5" font-size="12" 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 (6 samples, 0.01%)</title><rect x="968.0" y="149" width="0.1" height="15.0" fill="rgb(236,186,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="971.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> /tornado/iostream.py:_try_inline_read:907 (34 samples, 0.05%)</title><rect x="529.1" y="309" width="0.6" height="15.0" fill="rgb(242,172,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.12" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:__init__:1078 (1,365 samples, 2.07%)</title><rect x="1147.8" y="325" width="24.4" height="15.0" fill="rgb(239,28,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1150.79" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1155 (10 samples, 0.02%)</title><rect x="496.3" y="389" width="0.1" height="15.0" fill="rgb(218,217,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_run_close_callback:655 (113 samples, 0.17%)</title><rect x="535.5" y="277" width="2.0" height="15.0" fill="rgb(251,28,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="538.53" 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> /tornado/iostream.py:__init__:251 (7 samples, 0.01%)</title><rect x="634.8" y="357" width="0.1" height="15.0" fill="rgb(212,44,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.79" y="367.5" font-size="12" 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 (15 samples, 0.02%)</title><rect x="442.8" y="229" width="0.3" height="15.0" fill="rgb(212,198,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.78" 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>/re.py:_compile:289 (75 samples, 0.11%)</title><rect x="701.7" y="229" width="1.4" height="15.0" fill="rgb(243,206,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.74" 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> /tornado/web.py:clear:294 (2,065 samples, 3.12%)</title><rect x="920.5" y="165" width="36.9" height="15.0" fill="rgb(233,50,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="923.49" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:__init__:113 (7 samples, 0.01%)</title><rect x="1058.9" y="37" width="0.1" height="15.0" fill="rgb(212,84,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.90" 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> /tornado/gen.py:run:1169 (32 samples, 0.05%)</title><rect x="502.6" y="389" width="0.6" height="15.0" fill="rgb(242,94,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.60" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:287 (16 samples, 0.02%)</title><rect x="1182.5" y="325" width="0.3" height="15.0" fill="rgb(236,192,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.52" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:_create_future:187 (91 samples, 0.14%)</title><rect x="130.2" y="389" width="1.6" height="15.0" fill="rgb(217,136,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="133.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse_request_start_line:865 (26 samples, 0.04%)</title><rect x="831.2" y="229" width="0.4" height="15.0" fill="rgb(206,212,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="834.16" 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/events.py:_get_running_loop:644 (6 samples, 0.01%)</title><rect x="699.8" y="213" width="0.1" height="15.0" fill="rgb(222,24,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="702.83" 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>/socket.py:_real_close:411 (8 samples, 0.01%)</title><rect x="576.7" y="293" width="0.1" height="15.0" fill="rgb(212,144,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.67" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_run_read_callback:889 (8 samples, 0.01%)</title><rect x="729.8" y="213" width="0.1" height="15.0" fill="rgb(235,149,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.79" 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:parse_qsl:684 (9 samples, 0.01%)</title><rect x="424.9" y="293" width="0.1" height="15.0" fill="rgb(231,228,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.87" y="303.5" font-size="12" 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="409.3" y="357" width="0.1" height="15.0" fill="rgb(228,140,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="412.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:_format_timetuple_and_zone:134 (14 samples, 0.02%)</title><rect x="955.4" y="101" width="0.3" height="15.0" fill="rgb(225,65,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="958.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> /tornado/httpserver.py:handle_stream:193 (30 samples, 0.05%)</title><rect x="655.6" y="373" width="0.5" height="15.0" fill="rgb(236,55,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="658.60" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:current:282 (29 samples, 0.04%)</title><rect x="254.5" y="405" width="0.5" height="15.0" fill="rgb(229,41,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.45" y="415.5" font-size="12" 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 (37 samples, 0.06%)</title><rect x="557.4" y="325" width="0.6" height="15.0" fill="rgb(236,112,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.35" y="335.5" font-size="12" 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 (18 samples, 0.03%)</title><rect x="254.6" y="373" width="0.4" height="15.0" fill="rgb(248,209,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.63" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:303 (33 samples, 0.05%)</title><rect x="275.5" y="373" width="0.6" height="15.0" fill="rgb(243,31,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_server_request_loop:733 (156 samples, 0.24%)</title><rect x="520.2" y="389" width="2.8" height="15.0" fill="rgb(215,174,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.17" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:294 (7 samples, 0.01%)</title><rect x="273.4" y="373" width="0.1" height="15.0" fill="rgb(222,84,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.40" y="383.5" font-size="12" 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,382 samples, 2.09%)</title><rect x="226.5" y="373" width="24.7" height="15.0" fill="rgb(221,183,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="229.51" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:set_close_callback:606 (199 samples, 0.30%)</title><rect x="534.2" y="309" width="3.5" height="15.0" fill="rgb(227,208,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="537.15" y="319.5" font-size="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:parse_qs:651 (13 samples, 0.02%)</title><rect x="854.0" y="181" width="0.2" height="15.0" fill="rgb(208,113,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.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/base_events.py:_call_soon:599 (20 samples, 0.03%)</title><rect x="501.5" y="341" width="0.4" height="15.0" fill="rgb(213,147,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="504.55" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:_contains_yieldpoint:715 (6 samples, 0.01%)</title><rect x="160.4" y="405" width="0.1" height="15.0" fill="rgb(250,45,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.42" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:callback:883 (17 samples, 0.03%)</title><rect x="379.1" y="437" width="0.3" height="15.0" fill="rgb(252,187,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.05" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_server_request_loop:737 (6 samples, 0.01%)</title><rect x="512.3" y="389" width="0.1" height="15.0" fill="rgb(226,3,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.33" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:160 (2,728 samples, 4.13%)</title><rect x="696.6" y="277" width="48.7" height="15.0" fill="rgb(230,40,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="699.63" y="287.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>/socket.py:accept:214 (44 samples, 0.07%)</title><rect x="620.1" y="389" width="0.8" height="15.0" fill="rgb(212,48,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="623.08" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:318 (145 samples, 0.22%)</title><rect x="693.3" y="293" width="2.6" height="15.0" fill="rgb(207,7,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="696.33" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:__exit__:56 (7 samples, 0.01%)</title><rect x="898.5" y="229" width="0.1" height="15.0" fill="rgb(235,89,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.51" 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> /tornado/iostream.py:__init__:104 (6 samples, 0.01%)</title><rect x="537.4" y="261" width="0.1" height="15.0" fill="rgb(248,13,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.44" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:287 (18 samples, 0.03%)</title><rect x="1078.4" y="213" width="0.3" height="15.0" fill="rgb(243,48,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.42" 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> /tornado/gen.py:handle_yield:1230 (12 samples, 0.02%)</title><rect x="1060.4" y="149" width="0.2" height="15.0" fill="rgb(211,20,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.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>/selectors.py:__getitem__:70 (23 samples, 0.03%)</title><rect x="572.7" y="261" width="0.4" height="15.0" fill="rgb(225,221,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.71" y="271.5" font-size="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 (17 samples, 0.03%)</title><rect x="935.6" y="101" width="0.3" height="15.0" fill="rgb(221,34,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="938.64" 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> /tornado/iostream.py:_check_closed:1111 (6 samples, 0.01%)</title><rect x="529.8" y="293" width="0.1" height="15.0" fill="rgb(249,174,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.83" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:start_serving:724 (17 samples, 0.03%)</title><rect x="1173.0" y="357" width="0.3" height="15.0" fill="rgb(247,214,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1176.04" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:add_future:719 (242 samples, 0.37%)</title><rect x="1184.8" y="341" width="4.3" height="15.0" fill="rgb(220,117,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.77" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:__init__:99 (24 samples, 0.04%)</title><rect x="684.3" y="309" width="0.4" height="15.0" fill="rgb(240,9,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.31" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:execute:2232 (11 samples, 0.02%)</title><rect x="1076.4" y="197" width="0.2" height="15.0" fill="rgb(247,205,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.43" 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> /tornado/gen.py:with_timeout:965 (330 samples, 0.50%)</title><rect x="755.1" y="261" width="5.9" height="15.0" fill="rgb(252,154,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="758.13" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:182 (22 samples, 0.03%)</title><rect x="422.3" y="373" width="0.4" height="15.0" fill="rgb(254,13,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.32" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_clear_callbacks:276 (66 samples, 0.10%)</title><rect x="558.5" y="357" width="1.2" height="15.0" fill="rgb(243,160,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.49" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:split_fd:820 (40 samples, 0.06%)</title><rect x="1086.0" y="165" width="0.7" height="15.0" fill="rgb(250,36,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1089.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> /tornado/routing.py:find_handler:332 (410 samples, 0.62%)</title><rect x="877.8" y="149" width="7.4" height="15.0" fill="rgb(250,217,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="880.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> /tornado/stack_context.py:wrap:303 (10 samples, 0.02%)</title><rect x="733.3" y="197" width="0.2" height="15.0" fill="rgb(229,56,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.29" 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> /tornado/routing.py:find_handler:332 (8 samples, 0.01%)</title><rect x="426.4" y="325" width="0.2" height="15.0" fill="rgb(253,105,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="429.43" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__setitem__:223 (12 samples, 0.02%)</title><rect x="829.7" y="165" width="0.2" height="15.0" fill="rgb(215,227,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="832.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> /tornado/gen.py:handle_yield:1186 (46 samples, 0.07%)</title><rect x="1010.6" y="149" width="0.8" height="15.0" fill="rgb(224,229,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1013.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>/asyncio/events.py:_get_running_loop:645 (21 samples, 0.03%)</title><rect x="252.5" y="373" width="0.3" height="15.0" fill="rgb(245,213,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.47" y="383.5" font-size="12" 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 (8 samples, 0.01%)</title><rect x="54.7" y="469" width="0.1" height="15.0" fill="rgb(216,102,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.69" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:307 (47 samples, 0.07%)</title><rect x="692.5" y="293" width="0.8" height="15.0" fill="rgb(250,100,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.49" y="303.5" font-size="12" 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 (193 samples, 0.29%)</title><rect x="199.3" y="309" width="3.4" height="15.0" fill="rgb(207,174,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="202.26" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_body:537 (62 samples, 0.09%)</title><rect x="900.3" y="229" width="1.1" height="15.0" fill="rgb(216,43,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="903.30" 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> /tornado/iostream.py:__init__:1221 (26 samples, 0.04%)</title><rect x="630.4" y="373" width="0.5" height="15.0" fill="rgb(208,43,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="633.40" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:set_close_callback:605 (14 samples, 0.02%)</title><rect x="489.2" y="293" width="0.2" height="15.0" fill="rgb(231,54,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.16" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:326 (26,674 samples, 40.36%)</title><rect x="667.5" y="341" width="476.3" height="15.0" fill="rgb(224,153,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="670.54" y="351.5" font-size="12" 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 (830 samples, 1.26%)</title><rect x="141.4" y="325" width="14.8" height="15.0" fill="rgb(215,13,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="144.35" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:write_headers:396 (70 samples, 0.11%)</title><rect x="481.1" y="325" width="1.2" height="15.0" fill="rgb(205,43,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="484.05" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:296 (15 samples, 0.02%)</title><rect x="1141.9" y="213" width="0.3" height="15.0" fill="rgb(230,182,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.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> /tornado/gen.py:handle_yield:1221 (106 samples, 0.16%)</title><rect x="800.4" y="261" width="1.9" height="15.0" fill="rgb(251,81,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.39" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:__enter__:245 (12 samples, 0.02%)</title><rect x="582.6" y="341" width="0.2" height="15.0" fill="rgb(224,203,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="585.60" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:format_datetime:183 (28 samples, 0.04%)</title><rect x="436.0" y="245" width="0.5" height="15.0" fill="rgb(249,204,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.02" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_handle_read:845 (788 samples, 1.19%)</title><rect x="565.1" y="389" width="14.1" height="15.0" fill="rgb(224,141,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.10" y="399.5" font-size="12" 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_threadsafe:621 (8 samples, 0.01%)</title><rect x="506.4" y="341" width="0.2" height="15.0" fill="rgb(238,22,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.44" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:is_future:380 (23 samples, 0.03%)</title><rect x="752.6" y="213" width="0.4" height="15.0" fill="rgb(235,189,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="755.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>/asyncio/events.py:get_event_loop:691 (72 samples, 0.11%)</title><rect x="283.7" y="389" width="1.3" height="15.0" fill="rgb(230,170,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.70" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:296 (8 samples, 0.01%)</title><rect x="508.8" y="341" width="0.2" height="15.0" fill="rgb(243,216,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.83" y="351.5" font-size="12" 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 (176 samples, 0.27%)</title><rect x="1056.5" y="69" width="3.1" height="15.0" fill="rgb(237,204,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1059.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>/email/utils.py:formatdate:165 (55 samples, 0.08%)</title><rect x="435.5" y="261" width="1.0" height="15.0" fill="rgb(250,221,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.53" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:__init__:99 (11 samples, 0.02%)</title><rect x="520.0" y="373" width="0.2" height="15.0" fill="rgb(207,55,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.98" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:wrapper:803 (89 samples, 0.13%)</title><rect x="800.7" y="245" width="1.6" height="15.0" fill="rgb(241,120,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.70" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:get_all:174 (33 samples, 0.05%)</title><rect x="479.7" y="277" width="0.5" height="15.0" fill="rgb(220,23,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.66" 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> /tornado/concurrent.py:copy:599 (10 samples, 0.02%)</title><rect x="368.0" y="437" width="0.2" height="15.0" fill="rgb(248,67,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.02" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:348 (11 samples, 0.02%)</title><rect x="1143.6" y="293" width="0.2" height="15.0" fill="rgb(206,220,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1146.61" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/netutil.py:accept_handler:245 (9 samples, 0.01%)</title><rect x="591.6" y="405" width="0.1" height="15.0" fill="rgb(215,160,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="594.58" y="415.5" font-size="12" 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:remove_reader:342 (228 samples, 0.35%)</title><rect x="571.7" y="309" width="4.1" height="15.0" fill="rgb(243,123,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.74" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:set_close_callback:606 (71 samples, 0.11%)</title><rect x="489.4" y="293" width="1.3" height="15.0" fill="rgb(223,213,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.41" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:set_close_callback:606 (7 samples, 0.01%)</title><rect x="806.9" y="213" width="0.1" height="15.0" fill="rgb(224,121,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.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> /tornado/httputil.py:__init__:146 (147 samples, 0.22%)</title><rect x="814.0" y="197" width="2.6" height="15.0" fill="rgb(213,178,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="817.02" 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> /tornado/gen.py:run:1177 (373 samples, 0.56%)</title><rect x="1136.2" y="261" width="6.6" height="15.0" fill="rgb(239,8,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.18" y="271.5" font-size="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:__getitem__:71 (36 samples, 0.05%)</title><rect x="1113.9" y="117" width="0.6" height="15.0" fill="rgb(222,131,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1116.90" 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> /tornado/http1connection.py:write_headers:401 (49 samples, 0.07%)</title><rect x="484.3" y="325" width="0.9" height="15.0" fill="rgb(205,54,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.30" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:__enter__:245 (23 samples, 0.03%)</title><rect x="1082.8" y="181" width="0.4" height="15.0" fill="rgb(216,100,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.81" 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 (8 samples, 0.01%)</title><rect x="388.8" y="373" width="0.2" height="15.0" fill="rgb(251,135,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="391.82" y="383.5" font-size="12" 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_threadsafe:627 (37 samples, 0.06%)</title><rect x="587.3" y="325" width="0.6" height="15.0" fill="rgb(222,217,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.26" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_add_error_listener:1125 (181 samples, 0.27%)</title><rect x="534.5" y="293" width="3.2" height="15.0" fill="rgb(248,184,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="537.46" y="303.5" font-size="12" 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 (24 samples, 0.04%)</title><rect x="1057.7" y="37" width="0.4" height="15.0" fill="rgb(237,132,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.72" 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>/_collections_abc.py:get:660 (18 samples, 0.03%)</title><rect x="845.1" y="197" width="0.3" height="15.0" fill="rgb(210,64,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="848.07" 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> /tornado/platform/asyncio.py:remove_timeout:148 (453 samples, 0.69%)</title><rect x="786.9" y="213" width="8.1" height="15.0" fill="rgb(215,134,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.88" 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>/_weakrefset.py:_remove:41 (18 samples, 0.03%)</title><rect x="95.5" y="453" width="0.3" height="15.0" fill="rgb(248,34,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:__init__:103 (22 samples, 0.03%)</title><rect x="530.6" y="277" width="0.4" height="15.0" fill="rgb(247,195,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="533.57" 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> /tornado/http1connection.py:<genexpr>:390 (185 samples, 0.28%)</title><rect x="477.5" y="293" width="3.3" height="15.0" fill="rgb(213,63,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="480.53" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_run_close_callback:655 (44 samples, 0.07%)</title><rect x="730.6" y="229" width="0.7" height="15.0" fill="rgb(234,26,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.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>/urllib/parse.py:_coerce_args:116 (12 samples, 0.02%)</title><rect x="855.6" y="149" width="0.2" height="15.0" fill="rgb(227,147,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="858.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> /tornado/iostream.py:__init__:129 (107 samples, 0.16%)</title><rect x="637.9" y="341" width="1.9" height="15.0" fill="rgb(215,58,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="640.90" y="351.5" font-size="12" 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 (13 samples, 0.02%)</title><rect x="344.4" y="341" width="0.2" height="15.0" fill="rgb(236,224,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="347.40" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_clear_callbacks:276 (217 samples, 0.33%)</title><rect x="533.8" y="325" width="3.9" height="15.0" fill="rgb(211,168,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.83" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/escape.py:to_unicode:211 (30 samples, 0.05%)</title><rect x="479.1" y="277" width="0.5" height="15.0" fill="rgb(241,180,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.07" 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> /tornado/http1connection.py:set_close_callback:290 (206 samples, 0.31%)</title><rect x="959.4" y="165" width="3.7" height="15.0" fill="rgb(225,64,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="962.39" 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> /tornado/web.py:_request_summary:1627 (6 samples, 0.01%)</title><rect x="494.4" y="309" width="0.1" height="15.0" fill="rgb(215,89,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.39" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:get_handler_delegate:2126 (479 samples, 0.72%)</title><rect x="888.6" y="117" width="8.5" height="15.0" fill="rgb(252,11,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="891.59" 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> /tornado/gen.py:multi_future:872 (56 samples, 0.08%)</title><rect x="207.1" y="405" width="1.0" height="15.0" fill="rgb(250,182,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.08" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:296 (45 samples, 0.07%)</title><rect x="783.3" y="213" width="0.8" height="15.0" fill="rgb(253,112,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.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>/re.py:_compile:289 (14 samples, 0.02%)</title><rect x="463.3" y="309" width="0.3" height="15.0" fill="rgb(223,148,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="466.34" y="319.5" font-size="12" 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 (21 samples, 0.03%)</title><rect x="380.5" y="389" width="0.3" height="15.0" fill="rgb(241,30,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.47" y="399.5" font-size="12" 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.04%)</title><rect x="777.5" y="165" width="0.5" height="15.0" fill="rgb(245,168,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.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:call_later:544 (500 samples, 0.76%)</title><rect x="773.2" y="213" width="9.0" height="15.0" fill="rgb(209,47,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="776.23" 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> /tornado/web.py:_log:1624 (178 samples, 0.27%)</title><rect x="491.8" y="341" width="3.1" height="15.0" fill="rgb(227,122,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.76" y="351.5" font-size="12" 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 (6 samples, 0.01%)</title><rect x="410.9" y="341" width="0.1" height="15.0" fill="rgb(248,226,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="413.89" y="351.5" font-size="12" 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 (58 samples, 0.09%)</title><rect x="1025.0" y="69" width="1.0" height="15.0" fill="rgb(209,125,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1028.01" 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>/_weakrefset.py:__contains__:72 (39 samples, 0.06%)</title><rect x="765.8" y="213" width="0.7" height="15.0" fill="rgb(244,30,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="768.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> /tornado/http1connection.py:_parse_headers:529 (154 samples, 0.23%)</title><rect x="807.8" y="229" width="2.8" height="15.0" fill="rgb(236,213,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="810.80" 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/events.py:_get_running_loop:645 (54 samples, 0.08%)</title><rect x="1146.4" y="277" width="1.0" height="15.0" fill="rgb(222,205,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1149.45" 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> /tornado/gen.py:with_timeout:982 (41 samples, 0.06%)</title><rect x="532.6" y="325" width="0.7" height="15.0" fill="rgb(242,110,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.60" y="335.5" font-size="12" 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 (46 samples, 0.07%)</title><rect x="168.0" y="325" width="0.8" height="15.0" fill="rgb(248,219,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="170.97" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:chain_future:602 (10 samples, 0.02%)</title><rect x="758.9" y="245" width="0.2" height="15.0" fill="rgb(245,180,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="761.91" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_has_stream_request_body:1811 (31 samples, 0.05%)</title><rect x="986.7" y="149" width="0.6" height="15.0" fill="rgb(234,10,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="989.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> /tornado/gen.py:with_timeout:964 (119 samples, 0.18%)</title><rect x="753.0" y="261" width="2.1" height="15.0" fill="rgb(205,39,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="756.00" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_to_buffer:945 (24 samples, 0.04%)</title><rect x="568.3" y="357" width="0.5" height="15.0" fill="rgb(243,71,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="571.33" y="367.5" font-size="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:__getitem__:71 (10 samples, 0.02%)</title><rect x="573.1" y="261" width="0.2" height="15.0" fill="rgb(223,148,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.12" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1168 (22 samples, 0.03%)</title><rect x="502.2" y="389" width="0.4" height="15.0" fill="rgb(231,80,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.21" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/weakref.py:__getitem__:394 (24 samples, 0.04%)</title><rect x="1138.8" y="197" width="0.4" height="15.0" fill="rgb(223,53,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.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>/_collections_abc.py:__contains__:666 (17 samples, 0.03%)</title><rect x="420.8" y="293" width="0.3" height="15.0" fill="rgb(216,205,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="423.82" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_run_close_callback:641 (8 samples, 0.01%)</title><rect x="534.7" y="277" width="0.1" height="15.0" fill="rgb(214,172,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="537.65" 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> /tornado/httputil.py:add:160 (95 samples, 0.14%)</title><rect x="829.0" y="181" width="1.7" height="15.0" fill="rgb(248,222,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="831.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> /tornado/web.py:set_etag_header:1499 (139 samples, 0.21%)</title><rect x="457.4" y="341" width="2.5" height="15.0" fill="rgb(233,12,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.41" y="351.5" font-size="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 (14 samples, 0.02%)</title><rect x="977.4" y="149" width="0.3" height="15.0" fill="rgb(206,123,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.42" 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> /tornado/ioloop.py:add_future:716 (10 samples, 0.02%)</title><rect x="1168.0" y="293" width="0.2" height="15.0" fill="rgb(245,158,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1171.02" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_add_error_listener:1124 (7 samples, 0.01%)</title><rect x="730.2" y="197" width="0.1" height="15.0" fill="rgb(216,23,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.20" 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> /tornado/gen.py:convert_yielded:1361 (116 samples, 0.18%)</title><rect x="442.7" y="245" width="2.1" height="15.0" fill="rgb(241,225,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.75" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_clear_callbacks:272 (20 samples, 0.03%)</title><rect x="680.3" y="293" width="0.3" height="15.0" fill="rgb(225,93,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.27" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:__contains__:667 (13 samples, 0.02%)</title><rect x="828.4" y="165" width="0.2" height="15.0" fill="rgb(212,91,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="831.39" 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> /tornado/gen.py:wrapper:297 (203 samples, 0.31%)</title><rect x="966.5" y="181" width="3.7" height="15.0" fill="rgb(245,31,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="969.53" 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><string>:__new__:14 (37 samples, 0.06%)</title><rect x="834.9" y="213" width="0.7" height="15.0" fill="rgb(241,139,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="837.93" 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> /tornado/httputil.py:__setitem__:225 (175 samples, 0.26%)</title><rect x="937.5" y="117" width="3.2" height="15.0" fill="rgb(212,209,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="940.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> /tornado/http1connection.py:_clear_callbacks:276 (157 samples, 0.24%)</title><rect x="680.9" y="293" width="2.8" height="15.0" fill="rgb(226,97,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.88" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:remove_handler:110 (8 samples, 0.01%)</title><rect x="570.0" y="325" width="0.1" height="15.0" fill="rgb(254,76,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.97" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:303 (7 samples, 0.01%)</title><rect x="509.0" y="341" width="0.1" height="15.0" fill="rgb(239,202,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.98" y="351.5" font-size="12" 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 (8 samples, 0.01%)</title><rect x="557.1" y="341" width="0.1" height="15.0" fill="rgb(231,169,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.06" y="351.5" font-size="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:register:239 (33 samples, 0.05%)</title><rect x="1131.6" y="117" width="0.6" height="15.0" fill="rgb(206,163,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1134.65" 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:_write_to_self:159 (12 samples, 0.02%)</title><rect x="1188.8" y="261" width="0.2" height="15.0" fill="rgb(226,144,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.77" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:182 (140 samples, 0.21%)</title><rect x="835.9" y="245" width="2.5" height="15.0" fill="rgb(215,78,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="838.93" y="255.5" font-size="12" 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:_ensure_fd_no_transport:252 (7 samples, 0.01%)</title><rect x="1106.5" y="149" width="0.1" height="15.0" fill="rgb(231,40,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1109.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/base_events.py:_check_closed:357 (7 samples, 0.01%)</title><rect x="775.1" y="181" width="0.1" height="15.0" fill="rgb(226,31,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="778.11" 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> /tornado/routing.py:find_handler:331 (21 samples, 0.03%)</title><rect x="866.5" y="197" width="0.3" height="15.0" fill="rgb(246,15,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="869.46" 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> /tornado/web.py:get_target_delegate:1884 (41 samples, 0.06%)</title><rect x="428.9" y="261" width="0.8" height="15.0" fill="rgb(231,151,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="431.95" y="271.5" font-size="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:__getitem__:70 (8 samples, 0.01%)</title><rect x="736.9" y="149" width="0.1" height="15.0" fill="rgb(244,180,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.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> /tornado/httputil.py:split_host_and_port:1000 (9 samples, 0.01%)</title><rect x="423.7" y="325" width="0.2" height="15.0" fill="rgb(215,9,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.70" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:__init__:145 (13 samples, 0.02%)</title><rect x="618.3" y="373" width="0.2" height="15.0" fill="rgb(205,186,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="621.29" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:callback:891 (8 samples, 0.01%)</title><rect x="379.4" y="437" width="0.1" height="15.0" fill="rgb(234,182,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.36" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__getitem__:229 (15 samples, 0.02%)</title><rect x="906.2" y="165" width="0.2" height="15.0" fill="rgb(224,87,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.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> /tornado/iostream.py:set_close_callback:605 (18 samples, 0.03%)</title><rect x="449.1" y="341" width="0.3" height="15.0" fill="rgb(235,157,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.12" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:__contains__:666 (7 samples, 0.01%)</title><rect x="474.9" y="309" width="0.1" height="15.0" fill="rgb(215,177,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.91" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:<lambda>:1013 (299 samples, 0.45%)</title><rect x="406.7" y="405" width="5.3" height="15.0" fill="rgb(209,217,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="409.68" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./tornado_server.py:get:43 (6 samples, 0.01%)</title><rect x="276.7" y="437" width="0.1" height="15.0" fill="rgb(227,37,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.72" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/tcpserver.py:_handle_connection:290 (12 samples, 0.02%)</title><rect x="627.6" y="389" width="0.2" height="15.0" fill="rgb(254,11,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="630.58" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httpserver.py:start_request:197 (19 samples, 0.03%)</title><rect x="522.0" y="373" width="0.3" height="15.0" fill="rgb(251,207,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="524.96" y="383.5" font-size="12" 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 (62 samples, 0.09%)</title><rect x="53.1" y="469" width="1.1" height="15.0" fill="rgb(213,79,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_consume:1093 (7 samples, 0.01%)</title><rect x="727.9" y="197" width="0.1" height="15.0" fill="rgb(239,78,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="730.86" 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> /tornado/httputil.py:__getitem__:229 (7 samples, 0.01%)</title><rect x="421.0" y="277" width="0.1" height="15.0" fill="rgb(209,171,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.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> /tornado/concurrent.py:future_set_result_unless_cancelled:618 (17 samples, 0.03%)</title><rect x="407.3" y="389" width="0.3" height="15.0" fill="rgb(237,19,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="410.32" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:__init__:2173 (6 samples, 0.01%)</title><rect x="894.6" y="101" width="0.1" height="15.0" fill="rgb(240,31,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="897.64" 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> /tornado/stack_context.py:wrap:303 (7 samples, 0.01%)</title><rect x="589.2" y="325" width="0.1" height="15.0" fill="rgb(244,137,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="592.17" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_body:579 (50 samples, 0.08%)</title><rect x="901.6" y="229" width="0.9" height="15.0" fill="rgb(243,120,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="904.58" 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> /tornado/gen.py:wrapper:346 (45 samples, 0.07%)</title><rect x="541.4" y="245" width="0.8" height="15.0" fill="rgb(215,10,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.42" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:headers_received:244 (1,831 samples, 2.77%)</title><rect x="864.6" y="229" width="32.7" height="15.0" fill="rgb(232,16,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="867.62" y="239.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>/asyncio/events.py:get_event_loop:691 (38 samples, 0.06%)</title><rect x="679.3" y="293" width="0.7" height="15.0" fill="rgb(237,179,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.27" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:__init__:1071 (81 samples, 0.12%)</title><rect x="990.9" y="165" width="1.4" height="15.0" fill="rgb(210,40,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.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> /tornado/http1connection.py:_read_message:177 (265 samples, 0.40%)</title><rect x="830.9" y="245" width="4.7" height="15.0" fill="rgb(233,103,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="833.86" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:<listcomp>:1560 (20 samples, 0.03%)</title><rect x="983.7" y="149" width="0.3" height="15.0" fill="rgb(232,83,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="986.67" 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> /tornado/gen.py:wrapper:326 (5,537 samples, 8.38%)</title><rect x="696.1" y="293" width="98.9" height="15.0" fill="rgb(213,171,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="699.11" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhod..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:__init__:192 (2,233 samples, 3.38%)</title><rect x="919.1" y="181" width="39.8" height="15.0" fill="rgb(221,178,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="922.07" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon_threadsafe:624 (88 samples, 0.13%)</title><rect x="585.7" y="325" width="1.5" height="15.0" fill="rgb(208,125,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.67" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:sleep:1014 (10 samples, 0.02%)</title><rect x="362.9" y="421" width="0.2" height="15.0" fill="rgb(221,34,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="365.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:execute:2211 (7 samples, 0.01%)</title><rect x="909.4" y="197" width="0.2" height="15.0" fill="rgb(229,23,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.44" 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> /tornado/httpserver.py:__init__:249 (23 samples, 0.03%)</title><rect x="651.6" y="357" width="0.4" height="15.0" fill="rgb(232,127,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.63" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:closed:678 (12 samples, 0.02%)</title><rect x="1077.4" y="229" width="0.2" height="15.0" fill="rgb(238,211,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1080.42" 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> /tornado/gen.py:convert_yielded:1361 (2,123 samples, 3.21%)</title><rect x="165.4" y="373" width="37.9" height="15.0" fill="rgb(212,199,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.39" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:346 (19,488 samples, 29.49%)</title><rect x="795.1" y="293" width="348.0" height="15.0" fill="rgb(211,174,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhodakov/.pyenv/versions/avio/lib/python..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_find_read_pos:1033 (42 samples, 0.06%)</title><rect x="725.0" y="213" width="0.8" height="15.0" fill="rgb(241,13,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.04" 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>/email/utils.py:formatdate:165 (537 samples, 0.81%)</title><rect x="947.8" y="133" width="9.6" height="15.0" fill="rgb(222,23,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="950.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> /tornado/web.py:_execute:1592 (10 samples, 0.02%)</title><rect x="451.7" y="373" width="0.2" height="15.0" fill="rgb(231,99,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.68" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:multi_future:898 (14 samples, 0.02%)</title><rect x="208.3" y="405" width="0.3" height="15.0" fill="rgb(224,26,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="211.31" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:__init__:234 (6 samples, 0.01%)</title><rect x="687.6" y="277" width="0.1" height="15.0" fill="rgb(244,168,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.63" 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> /tornado/gen.py:handle_yield:1221 (2,709 samples, 4.10%)</title><rect x="1011.7" y="149" width="48.3" height="15.0" fill="rgb(241,146,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1014.65" 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>all (66,083 samples, 100%)</title><rect x="10.0" y="533" width="1180.0" height="15.0" fill="rgb(239,3,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="543.5" font-size="12" 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:_remove_reader:283 (20 samples, 0.03%)</title><rect x="573.3" y="293" width="0.4" height="15.0" fill="rgb(212,204,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.35" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:null_wrapper:300 (35,011 samples, 52.98%)</title><rect x="564.1" y="421" width="625.2" height="15.0" fill="rgb(221,101,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.08" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" > /tornado/stack_context..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:family:433 (80 samples, 0.12%)</title><rect x="618.7" y="373" width="1.4" height="15.0" fill="rgb(207,53,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="621.65" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:execute:2228 (61 samples, 0.09%)</title><rect x="541.2" y="261" width="1.0" height="15.0" fill="rgb(241,215,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.15" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:__enter__:246 (31 samples, 0.05%)</title><rect x="1083.2" y="181" width="0.6" height="15.0" fill="rgb(209,196,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.22" 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> /tornado/gen.py:_contains_yieldpoint:713 (7 samples, 0.01%)</title><rect x="1148.9" y="293" width="0.1" height="15.0" fill="rgb(227,2,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1151.86" y="303.5" font-size="12" 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 (20 samples, 0.03%)</title><rect x="207.6" y="357" width="0.4" height="15.0" fill="rgb(247,31,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.62" y="367.5" font-size="12" 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 (11 samples, 0.02%)</title><rect x="544.7" y="373" width="0.2" height="15.0" fill="rgb(239,172,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.67" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse_line:195 (87 samples, 0.13%)</title><rect x="821.4" y="197" width="1.5" height="15.0" fill="rgb(214,22,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="824.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> /tornado/routing.py:find_handler:331 (26 samples, 0.04%)</title><rect x="877.4" y="149" width="0.4" height="15.0" fill="rgb(244,149,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="880.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> /tornado/web.py:execute:2215 (341 samples, 0.52%)</title><rect x="431.2" y="325" width="6.0" height="15.0" fill="rgb(248,122,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="434.16" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:__init__:109 (15 samples, 0.02%)</title><rect x="515.1" y="373" width="0.3" height="15.0" fill="rgb(228,45,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.14" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_execute:1589 (29 samples, 0.04%)</title><rect x="987.3" y="165" width="0.5" height="15.0" fill="rgb(236,163,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="990.29" 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> /tornado/http1connection.py:_read_message:166 (105 samples, 0.16%)</title><rect x="746.0" y="277" width="1.9" height="15.0" fill="rgb(217,196,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="749.04" 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> /tornado/iostream.py:set_close_callback:605 (13 samples, 0.02%)</title><rect x="558.6" y="341" width="0.2" height="15.0" fill="rgb(229,13,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.56" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./tornado_server.py:get:40 (3,166 samples, 4.79%)</title><rect x="159.3" y="437" width="56.5" height="15.0" fill="rgb(251,56,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="162.28" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >./tor..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:writing:674 (8 samples, 0.01%)</title><rect x="591.0" y="389" width="0.1" height="15.0" fill="rgb(238,97,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="593.96" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:log_request:2154 (11 samples, 0.02%)</title><rect x="492.1" y="325" width="0.2" height="15.0" fill="rgb(210,194,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.10" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:add_future:716 (15 samples, 0.02%)</title><rect x="1140.5" y="229" width="0.3" height="15.0" fill="rgb(213,197,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1143.52" 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> /tornado/iostream.py:set_close_callback:606 (45 samples, 0.07%)</title><rect x="682.9" y="277" width="0.8" height="15.0" fill="rgb(221,108,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="685.88" 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> /tornado/http1connection.py:__init__:100 (8 samples, 0.01%)</title><rect x="668.8" y="309" width="0.2" height="15.0" fill="rgb(244,102,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.85" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:finish:1053 (258 samples, 0.39%)</title><rect x="487.0" y="357" width="4.6" height="15.0" fill="rgb(240,80,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.01" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/copy.py:deepcopy:150 (41 samples, 0.06%)</title><rect x="862.3" y="197" width="0.8" height="15.0" fill="rgb(215,150,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="865.32" 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><string>:__new__:14 (8 samples, 0.01%)</title><rect x="744.7" y="133" width="0.1" height="15.0" fill="rgb(251,228,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.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/selector_events.py:_remove_reader:286 (78 samples, 0.12%)</title><rect x="573.9" y="293" width="1.4" height="15.0" fill="rgb(226,63,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.87" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:read_from_fd:1238 (112 samples, 0.17%)</title><rect x="713.5" y="197" width="2.0" height="15.0" fill="rgb(212,202,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.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> /tornado/ioloop.py:add_future:717 (26 samples, 0.04%)</title><rect x="802.7" y="245" width="0.5" height="15.0" fill="rgb(253,26,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.75" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_parse_headers:531 (43 samples, 0.07%)</title><rect x="810.6" y="229" width="0.7" height="15.0" fill="rgb(249,193,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="813.55" 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>/_weakrefset.py:_remove:39 (14 samples, 0.02%)</title><rect x="95.2" y="453" width="0.2" height="15.0" fill="rgb(212,128,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.19" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:__init__:146 (7 samples, 0.01%)</title><rect x="618.5" y="373" width="0.2" height="15.0" fill="rgb(240,30,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="621.53" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:execute:2214 (6 samples, 0.01%)</title><rect x="909.6" y="197" width="0.1" height="15.0" fill="rgb(226,50,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.57" 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> /tornado/httputil.py:__getitem__:229 (62 samples, 0.09%)</title><rect x="827.3" y="149" width="1.1" height="15.0" fill="rgb(234,100,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="830.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>/re.py:match:172 (95 samples, 0.14%)</title><rect x="848.3" y="181" width="1.7" height="15.0" fill="rgb(238,24,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="851.32" 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 (10 samples, 0.02%)</title><rect x="552.0" y="357" width="0.2" height="15.0" fill="rgb(239,80,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.01" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/enum.py:__call__:290 (8 samples, 0.01%)</title><rect x="605.6" y="341" width="0.1" height="15.0" fill="rgb(227,31,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="608.58" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/copy.py:_keep_alive:266 (17 samples, 0.03%)</title><rect x="864.2" y="181" width="0.3" height="15.0" fill="rgb(216,62,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="867.16" 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>/weakref.py:__getitem__:137 (8 samples, 0.01%)</title><rect x="571.3" y="277" width="0.2" height="15.0" fill="rgb(213,131,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.31" 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> /tornado/iostream.py:peek:178 (6 samples, 0.01%)</title><rect x="486.2" y="277" width="0.1" height="15.0" fill="rgb(249,110,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.23" 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> /tornado/ioloop.py:add_timeout:620 (34 samples, 0.05%)</title><rect x="532.7" y="309" width="0.6" height="15.0" fill="rgb(239,88,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.73" y="319.5" font-size="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 (11 samples, 0.02%)</title><rect x="941.8" y="133" width="0.2" height="15.0" fill="rgb(226,157,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.81" 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> /tornado/stack_context.py:wrap:296 (136 samples, 0.21%)</title><rect x="357.3" y="373" width="2.5" height="15.0" fill="rgb(218,49,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="360.32" y="383.5" font-size="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 (30 samples, 0.05%)</title><rect x="666.8" y="309" width="0.5" height="15.0" fill="rgb(247,202,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.76" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:get:660 (15 samples, 0.02%)</title><rect x="460.4" y="325" width="0.3" height="15.0" fill="rgb(210,184,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.41" y="335.5" font-size="12" 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 (217 samples, 0.33%)</title><rect x="99.0" y="469" width="3.8" height="15.0" fill="rgb(249,184,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.96" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/copy.py:deepcopy:148 (17 samples, 0.03%)</title><rect x="862.0" y="197" width="0.3" height="15.0" fill="rgb(215,42,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="865.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> /tornado/escape.py:utf8:193 (6 samples, 0.01%)</title><rect x="463.6" y="325" width="0.1" height="15.0" fill="rgb(228,25,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="466.64" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:add_handler:81 (32 samples, 0.05%)</title><rect x="1134.3" y="181" width="0.5" height="15.0" fill="rgb(225,54,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.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> /tornado/platform/asyncio.py:add_handler:74 (64 samples, 0.10%)</title><rect x="1085.7" y="181" width="1.1" height="15.0" fill="rgb(240,166,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1088.68" 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> /tornado/gen.py:__init__:1064 (6 samples, 0.01%)</title><rect x="990.4" y="165" width="0.1" height="15.0" fill="rgb(221,70,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.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> /tornado/concurrent.py:future_add_done_callback:652 (10 samples, 0.02%)</title><rect x="1142.7" y="213" width="0.1" height="15.0" fill="rgb(240,52,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.66" 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> /tornado/httputil.py:__init__:378 (229 samples, 0.35%)</title><rect x="860.4" y="213" width="4.1" height="15.0" fill="rgb(233,115,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="863.39" 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> /tornado/http1connection.py:__init__:130 (6 samples, 0.01%)</title><rect x="683.9" y="309" width="0.1" height="15.0" fill="rgb(216,180,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="686.86" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__init__:357 (18 samples, 0.03%)</title><rect x="842.5" y="213" width="0.4" height="15.0" fill="rgb(225,42,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="845.53" 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> /tornado/iostream.py:__init__:132 (16 samples, 0.02%)</title><rect x="640.0" y="341" width="0.3" height="15.0" fill="rgb(224,125,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="642.97" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:multi_future:901 (6 samples, 0.01%)</title><rect x="215.2" y="405" width="0.1" height="15.0" fill="rgb(211,70,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="218.17" y="415.5" font-size="12" 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 (40 samples, 0.06%)</title><rect x="506.6" y="325" width="0.7" height="15.0" fill="rgb(243,174,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.62" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_handle_read:853 (50 samples, 0.08%)</title><rect x="579.2" y="389" width="0.9" height="15.0" fill="rgb(229,95,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.17" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/escape.py:parse_qs_bytes:176 (383 samples, 0.58%)</title><rect x="853.1" y="197" width="6.9" height="15.0" fill="rgb(214,98,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.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> /tornado/http1connection.py:_read_message:263 (9 samples, 0.01%)</title><rect x="806.9" y="245" width="0.1" height="15.0" fill="rgb(225,228,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.87" y="255.5" font-size="12" 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 (60 samples, 0.09%)</title><rect x="753.9" y="229" width="1.0" height="15.0" fill="rgb(214,61,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="756.88" 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> /tornado/gen.py:handle_yield:1186 (10 samples, 0.02%)</title><rect x="441.9" y="277" width="0.2" height="15.0" fill="rgb(217,20,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.89" 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> /tornado/httputil.py:__init__:139 (12 samples, 0.02%)</title><rect x="813.8" y="197" width="0.2" height="15.0" fill="rgb(239,94,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.80" 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> /tornado/routing.py:find_handler:334 (10 samples, 0.02%)</title><rect x="868.4" y="197" width="0.2" height="15.0" fill="rgb(217,114,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="871.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> /tornado/httputil.py:__init__:378 (39 samples, 0.06%)</title><rect x="425.5" y="341" width="0.7" height="15.0" fill="rgb(242,59,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="428.48" y="351.5" font-size="12" 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 (19 samples, 0.03%)</title><rect x="280.5" y="373" width="0.3" height="15.0" fill="rgb(205,89,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:_format_timetuple_and_zone:133 (8 samples, 0.01%)</title><rect x="955.3" y="101" width="0.1" height="15.0" fill="rgb(232,143,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="958.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> /tornado/escape.py:parse_qs_bytes:177 (9 samples, 0.01%)</title><rect x="860.0" y="197" width="0.1" height="15.0" fill="rgb(229,191,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="862.98" 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> /tornado/http1connection.py:set_close_callback:290 (27 samples, 0.04%)</title><rect x="436.7" y="293" width="0.5" height="15.0" fill="rgb(242,77,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.73" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:multi_future:902 (27 samples, 0.04%)</title><rect x="215.3" y="405" width="0.5" height="15.0" fill="rgb(210,225,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="218.28" y="415.5" font-size="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 (6 samples, 0.01%)</title><rect x="244.2" y="341" width="0.1" height="15.0" fill="rgb(227,130,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.15" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/enum.py:__call__:291 (457 samples, 0.69%)</title><rect x="605.7" y="341" width="8.2" height="15.0" fill="rgb(236,95,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="608.72" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:remove_handler:112 (8 samples, 0.01%)</title><rect x="570.1" y="325" width="0.2" height="15.0" fill="rgb(234,94,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.12" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:finish:1032 (99 samples, 0.15%)</title><rect x="453.2" y="357" width="1.8" height="15.0" fill="rgb(233,189,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.21" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_run_streaming_callback:978 (6 samples, 0.01%)</title><rect x="704.1" y="229" width="0.1" height="15.0" fill="rgb(213,116,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.13" 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> /tornado/tcpserver.py:_handle_connection:294 (30,624 samples, 46.34%)</title><rect x="642.3" y="389" width="546.8" height="15.0" fill="rgb(251,138,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" > /tornado/tc..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:246 (6 samples, 0.01%)</title><rect x="1135.6" y="245" width="0.1" height="15.0" fill="rgb(232,48,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.61" y="255.5" font-size="12" 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 (27 samples, 0.04%)</title><rect x="781.1" y="181" width="0.5" height="15.0" fill="rgb(229,209,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="784.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> /tornado/httputil.py:__init__:366 (19 samples, 0.03%)</title><rect x="844.5" y="213" width="0.3" height="15.0" fill="rgb(250,18,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="847.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> /tornado/routing.py:get_target_delegate:356 (1,156 samples, 1.75%)</title><rect x="876.6" y="165" width="20.6" height="15.0" fill="rgb(210,184,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="879.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> /tornado/httputil.py:__init__:365 (20 samples, 0.03%)</title><rect x="844.1" y="213" width="0.4" height="15.0" fill="rgb(252,121,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="847.12" 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>/weakref.py:__getitem__:394 (14 samples, 0.02%)</title><rect x="223.0" y="373" width="0.3" height="15.0" fill="rgb(241,124,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="226.03" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:_contains_yieldpoint:715 (8 samples, 0.01%)</title><rect x="547.3" y="373" width="0.2" height="15.0" fill="rgb(248,3,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.33" y="383.5" font-size="12" 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:add_reader:337 (1,534 samples, 2.32%)</title><rect x="1106.9" y="165" width="27.4" height="15.0" fill="rgb(224,138,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1109.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/base_events.py:time:526 (28 samples, 0.04%)</title><rect x="781.7" y="197" width="0.5" height="15.0" fill="rgb(223,153,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="784.66" 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> /tornado/stack_context.py:wrap:294 (7 samples, 0.01%)</title><rect x="508.7" y="341" width="0.1" height="15.0" fill="rgb(210,81,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.71" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:execute:2215 (19 samples, 0.03%)</title><rect x="540.8" y="261" width="0.3" height="15.0" fill="rgb(221,204,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.80" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:wrapper:803 (7 samples, 0.01%)</title><rect x="539.3" y="309" width="0.1" height="15.0" fill="rgb(245,54,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.28" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httpserver.py:handle_stream:190 (582 samples, 0.88%)</title><rect x="643.7" y="373" width="10.4" height="15.0" fill="rgb(211,11,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.70" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:with_timeout:966 (45 samples, 0.07%)</title><rect x="254.2" y="421" width="0.8" height="15.0" fill="rgb(233,32,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.19" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_handle_events:726 (11 samples, 0.02%)</title><rect x="590.9" y="405" width="0.2" height="15.0" fill="rgb(253,162,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="593.90" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:log_request:2155 (15 samples, 0.02%)</title><rect x="492.3" y="325" width="0.3" height="15.0" fill="rgb(221,181,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.30" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:263 (230 samples, 0.35%)</title><rect x="533.6" y="341" width="4.1" height="15.0" fill="rgb(246,51,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.60" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:add_callback:153 (9 samples, 0.01%)</title><rect x="382.3" y="421" width="0.2" height="15.0" fill="rgb(251,182,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.32" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:wrapper:803 (2,269 samples, 3.43%)</title><rect x="162.8" y="389" width="40.5" height="15.0" fill="rgb(215,142,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.78" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/urllib/parse.py:<listcomp>:685 (155 samples, 0.23%)</title><rect x="856.9" y="149" width="2.8" height="15.0" fill="rgb(227,181,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="859.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> /tornado/stack_context.py:wrap:294 (12 samples, 0.02%)</title><rect x="783.1" y="213" width="0.2" height="15.0" fill="rgb(220,133,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.09" 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> /tornado/gen.py:_create_future:189 (22 samples, 0.03%)</title><rect x="663.0" y="325" width="0.4" height="15.0" fill="rgb(221,15,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="665.99" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_from_buffer:991 (11 samples, 0.02%)</title><rect x="726.7" y="229" width="0.2" height="15.0" fill="rgb(233,72,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="729.70" 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> /tornado/web.py:flush:974 (12 samples, 0.02%)</title><rect x="469.9" y="341" width="0.2" height="15.0" fill="rgb(238,101,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.91" y="351.5" font-size="12" 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:_remove_reader:279 (78 samples, 0.12%)</title><rect x="572.0" y="293" width="1.3" height="15.0" fill="rgb(217,58,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.96" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_parse_headers:532 (42 samples, 0.06%)</title><rect x="811.3" y="229" width="0.8" height="15.0" fill="rgb(220,82,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="814.32" 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> /tornado/ioloop.py:add_timeout:621 (8 samples, 0.01%)</title><rect x="261.4" y="405" width="0.1" height="15.0" fill="rgb(208,82,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.36" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:future_add_done_callback:652 (8 samples, 0.01%)</title><rect x="552.8" y="389" width="0.1" height="15.0" fill="rgb(232,217,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.78" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:__init__:2171 (9 samples, 0.01%)</title><rect x="893.7" y="101" width="0.1" height="15.0" fill="rgb(220,82,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="896.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/events.py:__init__:108 (6 samples, 0.01%)</title><rect x="387.8" y="373" width="0.1" height="15.0" fill="rgb(220,153,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="390.77" y="383.5" font-size="12" 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 (39 samples, 0.06%)</title><rect x="353.4" y="341" width="0.7" height="15.0" fill="rgb(250,78,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.36" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:handle_yield:1226 (7 samples, 0.01%)</title><rect x="1060.0" y="149" width="0.1" height="15.0" fill="rgb(206,83,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.02" 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> /tornado/http1connection.py:__init__:108 (7 samples, 0.01%)</title><rect x="515.0" y="373" width="0.1" height="15.0" fill="rgb(223,217,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.01" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:finish:2194 (24 samples, 0.04%)</title><rect x="430.6" y="341" width="0.5" height="15.0" fill="rgb(233,146,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.64" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:__init__:170 (71 samples, 0.11%)</title><rect x="910.4" y="181" width="1.3" height="15.0" fill="rgb(231,20,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.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> /tornado/http1connection.py:_finish_request:522 (6 samples, 0.01%)</title><rect x="491.5" y="309" width="0.1" height="15.0" fill="rgb(238,181,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.51" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_run_close_callback:666 (57 samples, 0.09%)</title><rect x="589.6" y="373" width="1.0" height="15.0" fill="rgb(213,79,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="592.58" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:call_at:145 (29 samples, 0.04%)</title><rect x="532.8" y="293" width="0.5" height="15.0" fill="rgb(238,96,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.82" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:null_wrapper:300 (327 samples, 0.49%)</title><rect x="553.8" y="389" width="5.9" height="15.0" fill="rgb(207,216,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.83" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_break_cycles:1077 (33 samples, 0.05%)</title><rect x="495.3" y="341" width="0.6" height="15.0" fill="rgb(226,49,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.30" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_to_buffer_loop:841 (21 samples, 0.03%)</title><rect x="725.9" y="229" width="0.4" height="15.0" fill="rgb(236,185,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.91" 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> /tornado/iostream.py:_maybe_run_close_callback:647 (8 samples, 0.01%)</title><rect x="490.3" y="261" width="0.1" height="15.0" fill="rgb(254,106,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.30" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:219 (15 samples, 0.02%)</title><rect x="430.0" y="373" width="0.2" height="15.0" fill="rgb(237,88,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.96" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_add_error_listener:1124 (9 samples, 0.01%)</title><rect x="518.4" y="325" width="0.1" height="15.0" fill="rgb(234,69,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.39" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:add_future:717 (715 samples, 1.08%)</title><rect x="1062.3" y="133" width="12.7" height="15.0" fill="rgb(215,27,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.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> /tornado/iostream.py:set_close_callback:606 (6 samples, 0.01%)</title><rect x="415.8" y="341" width="0.1" height="15.0" fill="rgb(215,30,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.80" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:_create_future:187 (76 samples, 0.12%)</title><rect x="690.8" y="277" width="1.4" height="15.0" fill="rgb(215,37,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.84" 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> /tornado/gen.py:__init__:1071 (125 samples, 0.19%)</title><rect x="1145.5" y="325" width="2.2" height="15.0" fill="rgb(210,38,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1148.50" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:wrapper:803 (47 samples, 0.07%)</title><rect x="504.4" y="357" width="0.9" height="15.0" fill="rgb(228,3,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.44" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:242 (12 samples, 0.02%)</title><rect x="1076.6" y="245" width="0.2" height="15.0" fill="rgb(217,38,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.63" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:296 (109 samples, 0.16%)</title><rect x="273.5" y="373" width="2.0" height="15.0" fill="rgb(245,58,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.52" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:add_future:719 (41 samples, 0.06%)</title><rect x="1075.1" y="133" width="0.7" height="15.0" fill="rgb(237,103,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.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> /tornado/platform/asyncio.py:call_at:144 (97 samples, 0.15%)</title><rect x="769.0" y="229" width="1.8" height="15.0" fill="rgb(222,51,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="772.02" 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> /tornado/concurrent.py:is_future:380 (8 samples, 0.01%)</title><rect x="1139.7" y="197" width="0.1" height="15.0" fill="rgb(243,101,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.68" 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> /tornado/iostream.py:_try_inline_read:906 (10 samples, 0.02%)</title><rect x="528.9" y="309" width="0.2" height="15.0" fill="rgb(252,120,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.94" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_finish_request:514 (11 samples, 0.02%)</title><rect x="491.1" y="309" width="0.2" height="15.0" fill="rgb(232,14,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.10" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__init__:373 (6 samples, 0.01%)</title><rect x="424.2" y="341" width="0.1" height="15.0" fill="rgb(251,134,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.20" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse_request_start_line:873 (11 samples, 0.02%)</title><rect x="422.1" y="357" width="0.2" height="15.0" fill="rgb(246,63,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.07" y="367.5" font-size="12" 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 (132 samples, 0.20%)</title><rect x="351.7" y="357" width="2.4" height="15.0" fill="rgb(240,85,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="354.70" y="367.5" font-size="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:get_key:189 (43 samples, 0.07%)</title><rect x="736.8" y="165" width="0.7" height="15.0" fill="rgb(211,194,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.75" 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> /tornado/web.py:flush:992 (41 samples, 0.06%)</title><rect x="470.8" y="341" width="0.7" height="15.0" fill="rgb(211,185,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.76" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httpserver.py:__init__:242 (7 samples, 0.01%)</title><rect x="644.8" y="357" width="0.2" height="15.0" fill="rgb(241,14,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.85" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__getitem__:229 (21 samples, 0.03%)</title><rect x="462.2" y="309" width="0.4" height="15.0" fill="rgb(246,1,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="465.23" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1127 (7 samples, 0.01%)</title><rect x="414.5" y="389" width="0.1" height="15.0" fill="rgb(224,216,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.46" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_to_buffer_loop:815 (673 samples, 1.02%)</title><rect x="565.8" y="373" width="12.0" height="15.0" fill="rgb(211,226,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:287 (25 samples, 0.04%)</title><rect x="508.1" y="341" width="0.5" height="15.0" fill="rgb(221,14,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:set_etag_header:1497 (123 samples, 0.19%)</title><rect x="455.2" y="341" width="2.2" height="15.0" fill="rgb(236,159,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="458.21" y="351.5" font-size="12" 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:_add_reader:264 (1,009 samples, 1.53%)</title><rect x="1108.9" y="149" width="18.0" height="15.0" fill="rgb(250,163,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.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> /tornado/gen.py:convert_yielded:1356 (18 samples, 0.03%)</title><rect x="752.1" y="229" width="0.3" height="15.0" fill="rgb(231,158,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="755.06" 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> /tornado/httputil.py:parse_line:198 (75 samples, 0.11%)</title><rect x="420.2" y="325" width="1.3" height="15.0" fill="rgb(250,145,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="423.18" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:inner:1233 (5,520 samples, 8.35%)</title><rect x="412.0" y="405" width="98.6" height="15.0" fill="rgb(250,18,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="415.04" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhod..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:346 (214 samples, 0.32%)</title><rect x="539.1" y="357" width="3.8" height="15.0" fill="rgb(214,18,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.10" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:_contains_yieldpoint:713 (25 samples, 0.04%)</title><rect x="799.4" y="245" width="0.4" height="15.0" fill="rgb(205,100,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.37" y="255.5" font-size="12" 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 (227 samples, 0.34%)</title><rect x="267.3" y="357" width="4.0" height="15.0" fill="rgb(207,93,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:finish:1031 (24 samples, 0.04%)</title><rect x="452.8" y="357" width="0.4" height="15.0" fill="rgb(248,30,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="455.78" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:match:528 (16 samples, 0.02%)</title><rect x="884.5" y="133" width="0.2" height="15.0" fill="rgb(240,35,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="887.46" 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:519 (7 samples, 0.01%)</title><rect x="541.6" y="165" width="0.1" height="15.0" fill="rgb(218,23,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.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>/weakref.py:__getitem__:394 (28 samples, 0.04%)</title><rect x="751.3" y="213" width="0.5" height="15.0" fill="rgb(229,158,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="754.25" 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> /tornado/ioloop.py:current:282 (52 samples, 0.08%)</title><rect x="991.3" y="149" width="0.9" height="15.0" fill="rgb(208,178,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="994.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>/asyncio/coroutines.py:iscoroutine:272 (10 samples, 0.02%)</title><rect x="225.3" y="357" width="0.2" height="15.0" fill="rgb(236,121,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="228.31" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/enum.py:__new__:525 (8 samples, 0.01%)</title><rect x="650.9" y="293" width="0.1" height="15.0" fill="rgb(235,127,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.86" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_run_callback:774 (54 samples, 0.08%)</title><rect x="582.2" y="357" width="1.0" height="15.0" fill="rgb(248,129,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="585.19" y="367.5" font-size="12" 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 (16 samples, 0.02%)</title><rect x="53.2" y="453" width="0.3" height="15.0" fill="rgb(206,66,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:chain_future:591 (19 samples, 0.03%)</title><rect x="253.4" y="405" width="0.4" height="15.0" fill="rgb(253,11,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.42" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_parse_headers:532 (8 samples, 0.01%)</title><rect x="418.4" y="357" width="0.2" height="15.0" fill="rgb(226,147,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="421.43" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:add_timeout:619 (171 samples, 0.26%)</title><rect x="764.0" y="245" width="3.1" height="15.0" fill="rgb(237,98,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="767.02" y="255.5" font-size="12" 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 (6 samples, 0.01%)</title><rect x="411.0" y="341" width="0.1" height="15.0" fill="rgb(249,184,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="414.00" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:on_connection_close:284 (29 samples, 0.04%)</title><rect x="555.7" y="341" width="0.5" height="15.0" fill="rgb(226,121,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.73" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:_intenum_converter:104 (11 samples, 0.02%)</title><rect x="613.9" y="357" width="0.2" height="15.0" fill="rgb(251,170,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="616.88" y="367.5" font-size="12" 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:_ensure_fd_no_transport:252 (8 samples, 0.01%)</title><rect x="571.5" y="293" width="0.1" height="15.0" fill="rgb(232,55,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.46" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1137 (6 samples, 0.01%)</title><rect x="511.8" y="405" width="0.1" height="15.0" fill="rgb(220,69,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.80" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:update:839 (13 samples, 0.02%)</title><rect x="434.2" y="261" width="0.3" height="15.0" fill="rgb(232,15,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.25" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse_request_start_line:873 (81 samples, 0.12%)</title><rect x="834.1" y="229" width="1.5" height="15.0" fill="rgb(219,206,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="837.14" 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> /tornado/httputil.py:__init__:379 (8 samples, 0.01%)</title><rect x="864.5" y="213" width="0.1" height="15.0" fill="rgb(228,90,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="867.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/base_events.py:get_debug:1469 (10 samples, 0.02%)</title><rect x="366.5" y="389" width="0.2" height="15.0" fill="rgb(231,145,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="369.50" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:update:848 (13 samples, 0.02%)</title><rect x="940.7" y="133" width="0.2" height="15.0" fill="rgb(239,90,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.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/events.py:_get_running_loop:645 (26 samples, 0.04%)</title><rect x="797.8" y="229" width="0.4" height="15.0" fill="rgb(253,4,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.79" 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> /tornado/httputil.py:get_all:175 (25 samples, 0.04%)</title><rect x="480.2" y="277" width="0.5" height="15.0" fill="rgb(230,56,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.25" 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/events.py:get_event_loop:691 (36 samples, 0.05%)</title><rect x="691.6" y="261" width="0.6" height="15.0" fill="rgb(253,134,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.56" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:write:587 (48 samples, 0.07%)</title><rect x="486.0" y="309" width="0.9" height="15.0" fill="rgb(223,6,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.00" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:formatdate:156 (6 samples, 0.01%)</title><rect x="944.1" y="133" width="0.1" height="15.0" fill="rgb(237,155,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="947.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/selector_events.py:_process_events:524 (6 samples, 0.01%)</title><rect x="53.5" y="453" width="0.1" height="15.0" fill="rgb(231,168,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.52" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:null_wrapper:302 (12 samples, 0.02%)</title><rect x="1189.3" y="421" width="0.2" height="15.0" fill="rgb(221,190,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.25" y="431.5" font-size="12" 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_threadsafe:622 (6 samples, 0.01%)</title><rect x="386.1" y="405" width="0.1" height="15.0" fill="rgb(226,178,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.13" y="415.5" font-size="12" 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 (25 samples, 0.04%)</title><rect x="536.5" y="245" width="0.4" height="15.0" fill="rgb(209,140,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="539.46" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:log_request:2162 (83 samples, 0.13%)</title><rect x="493.5" y="325" width="1.4" height="15.0" fill="rgb(218,55,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.46" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:read_response:152 (25,484 samples, 38.56%)</title><rect x="688.8" y="309" width="455.0" height="15.0" fill="rgb(231,197,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="691.79" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/site-packag..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:set_close_callback:606 (49 samples, 0.07%)</title><rect x="558.8" y="341" width="0.9" height="15.0" fill="rgb(221,36,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.80" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse_line:195 (11 samples, 0.02%)</title><rect x="420.0" y="325" width="0.2" height="15.0" fill="rgb(209,85,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.98" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:execute:2207 (25 samples, 0.04%)</title><rect x="909.0" y="197" width="0.4" height="15.0" fill="rgb(248,51,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.99" 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> /tornado/iostream.py:_maybe_add_error_listener:1125 (20 samples, 0.03%)</title><rect x="560.0" y="389" width="0.4" height="15.0" fill="rgb(244,57,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.03" y="399.5" font-size="12" 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 (19 samples, 0.03%)</title><rect x="527.5" y="277" width="0.3" height="15.0" fill="rgb(248,193,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.48" 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> /tornado/iostream.py:__init__:103 (7 samples, 0.01%)</title><rect x="731.2" y="213" width="0.1" height="15.0" fill="rgb(206,213,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.20" 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_event_loop:691 (46 samples, 0.07%)</title><rect x="225.7" y="357" width="0.8" height="15.0" fill="rgb(238,219,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="228.69" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_add_io_state:1151 (10 samples, 0.02%)</title><rect x="1081.2" y="197" width="0.2" height="15.0" fill="rgb(236,194,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1084.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> /tornado/iostream.py:_handle_read:856 (590 samples, 0.89%)</title><rect x="580.1" y="389" width="10.5" height="15.0" fill="rgb(220,127,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="583.06" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:__contains__:666 (20 samples, 0.03%)</title><rect x="474.0" y="309" width="0.4" height="15.0" fill="rgb(230,120,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.00" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:handle_yield:1221 (9 samples, 0.01%)</title><rect x="539.2" y="325" width="0.2" height="15.0" fill="rgb(207,53,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.24" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:call_at:144 (31 samples, 0.05%)</title><rect x="263.4" y="389" width="0.6" height="15.0" fill="rgb(207,137,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.40" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:_create_future:187 (164 samples, 0.25%)</title><rect x="660.1" y="325" width="2.9" height="15.0" fill="rgb(209,80,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="663.06" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_finish_request:520 (10 samples, 0.02%)</title><rect x="491.3" y="309" width="0.2" height="15.0" fill="rgb(232,11,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.30" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:callback:881 (8 samples, 0.01%)</title><rect x="378.9" y="437" width="0.2" height="15.0" fill="rgb(235,2,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="381.91" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:remove_handler:109 (20 samples, 0.03%)</title><rect x="569.6" y="325" width="0.4" height="15.0" fill="rgb(248,54,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.62" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:296 (32 samples, 0.05%)</title><rect x="588.6" y="325" width="0.6" height="15.0" fill="rgb(209,212,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.60" y="335.5" font-size="12" 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 (896 samples, 1.36%)</title><rect x="140.3" y="341" width="16.0" height="15.0" fill="rgb(218,51,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="143.28" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:convert_yielded:1360 (17 samples, 0.03%)</title><rect x="224.2" y="389" width="0.3" height="15.0" fill="rgb(225,226,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="227.20" y="399.5" font-size="12" 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 (18 samples, 0.03%)</title><rect x="437.9" y="261" width="0.3" height="15.0" fill="rgb(254,113,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.89" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:null_wrapper:299 (140 samples, 0.21%)</title><rect x="401.0" y="421" width="2.5" height="15.0" fill="rgb(220,76,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.04" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:_intenum_converter:103 (43 samples, 0.07%)</title><rect x="619.3" y="357" width="0.8" height="15.0" fill="rgb(228,45,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.31" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:__init__:182 (14 samples, 0.02%)</title><rect x="912.9" y="181" width="0.2" height="15.0" fill="rgb(218,11,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.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> /tornado/gen.py:_create_future:189 (19 samples, 0.03%)</title><rect x="282.4" y="405" width="0.3" height="15.0" fill="rgb(210,202,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.36" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:__init__:260 (174 samples, 0.26%)</title><rect x="637.2" y="357" width="3.1" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="640.15" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:346 (1,592 samples, 2.41%)</title><rect x="1144.2" y="341" width="28.4" height="15.0" fill="rgb(217,77,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.20" y="351.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> /tornado/iostream.py:set_close_callback:606 (94 samples, 0.14%)</title><rect x="518.1" y="341" width="1.6" height="15.0" fill="rgb(250,71,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.07" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:add_timeout:622 (67 samples, 0.10%)</title><rect x="261.5" y="405" width="1.2" height="15.0" fill="rgb(229,157,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.51" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:add:153 (77 samples, 0.12%)</title><rect x="824.2" y="181" width="1.4" height="15.0" fill="rgb(225,187,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="827.21" 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> /tornado/httputil.py:__getitem__:229 (6 samples, 0.01%)</title><rect x="907.3" y="149" width="0.1" height="15.0" fill="rgb(207,213,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.33" 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> /tornado/httputil.py:parse:217 (8 samples, 0.01%)</title><rect x="539.9" y="277" width="0.1" height="15.0" fill="rgb(252,86,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.87" 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>/logging/__init__.py:getEffectiveLevel:1536 (6 samples, 0.01%)</title><rect x="494.1" y="277" width="0.1" height="15.0" fill="rgb(243,162,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.12" 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> /tornado/web.py:__init__:2176 (11 samples, 0.02%)</title><rect x="429.5" y="229" width="0.2" height="15.0" fill="rgb(246,96,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.48" 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> /tornado/gen.py:handle_yield:1229 (9 samples, 0.01%)</title><rect x="1151.0" y="309" width="0.2" height="15.0" fill="rgb(222,47,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.04" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httpserver.py:__init__:261 (81 samples, 0.12%)</title><rect x="652.6" y="357" width="1.5" height="15.0" fill="rgb(224,204,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="655.65" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:multi_future:868 (2,323 samples, 3.52%)</title><rect x="161.8" y="405" width="41.5" height="15.0" fill="rgb(254,217,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.81" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__setitem__:224 (16 samples, 0.02%)</title><rect x="829.9" y="165" width="0.3" height="15.0" fill="rgb(235,202,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="832.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> /tornado/httpserver.py:handle_stream:192 (80 samples, 0.12%)</title><rect x="654.2" y="373" width="1.4" height="15.0" fill="rgb(231,57,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="657.17" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:null_wrapper:300 (41 samples, 0.06%)</title><rect x="555.5" y="357" width="0.7" height="15.0" fill="rgb(244,105,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.51" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_run_close_callback:660 (431 samples, 0.65%)</title><rect x="581.8" y="373" width="7.7" height="15.0" fill="rgb(245,216,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="584.78" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_can_keep_alive:504 (9 samples, 0.01%)</title><rect x="838.2" y="229" width="0.2" height="15.0" fill="rgb(243,4,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="841.19" 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> /tornado/http1connection.py:write_headers:383 (12 samples, 0.02%)</title><rect x="474.8" y="325" width="0.2" height="15.0" fill="rgb(220,140,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.82" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__len__:237 (21 samples, 0.03%)</title><rect x="843.4" y="197" width="0.4" height="15.0" fill="rgb(246,99,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="846.39" 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> /tornado/gen.py:_contains_yieldpoint:715 (7 samples, 0.01%)</title><rect x="1149.0" y="293" width="0.1" height="15.0" fill="rgb(210,54,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1151.98" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/escape.py:parse_qs_bytes:176 (45 samples, 0.07%)</title><rect x="424.6" y="325" width="0.8" height="15.0" fill="rgb(251,80,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:_parse_body:480 (9 samples, 0.01%)</title><rect x="905.7" y="197" width="0.2" height="15.0" fill="rgb(244,222,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="908.69" 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> /tornado/iostream.py:_find_read_pos:1028 (11 samples, 0.02%)</title><rect x="704.8" y="229" width="0.2" height="15.0" fill="rgb(242,9,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.84" 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/events.py:_get_running_loop:645 (30 samples, 0.05%)</title><rect x="679.4" y="277" width="0.5" height="15.0" fill="rgb(226,207,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.40" 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>/_collections_abc.py:__contains__:666 (117 samples, 0.18%)</title><rect x="826.3" y="165" width="2.1" height="15.0" fill="rgb(244,66,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="829.30" 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> /tornado/web.py:_execute:1590 (12 samples, 0.02%)</title><rect x="440.6" y="293" width="0.2" height="15.0" fill="rgb(207,106,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.61" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_try_inline_read:929 (779 samples, 1.18%)</title><rect x="731.4" y="245" width="13.9" height="15.0" fill="rgb(231,192,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.41" y="255.5" font-size="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 (13 samples, 0.02%)</title><rect x="261.1" y="389" width="0.2" height="15.0" fill="rgb(244,14,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.06" y="399.5" font-size="12" 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 (8 samples, 0.01%)</title><rect x="443.5" y="213" width="0.1" height="15.0" fill="rgb(220,82,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.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> /tornado/platform/asyncio.py:call_at:144 (81 samples, 0.12%)</title><rect x="134.1" y="373" width="1.5" height="15.0" fill="rgb(253,216,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="137.14" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:format_datetime:174 (24 samples, 0.04%)</title><rect x="435.6" y="245" width="0.4" height="15.0" fill="rgb(215,37,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.55" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:<genexpr>:716 (14 samples, 0.02%)</title><rect x="161.1" y="389" width="0.3" height="15.0" fill="rgb(215,54,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.10" y="399.5" font-size="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 (6 samples, 0.01%)</title><rect x="51.6" y="453" width="0.1" height="15.0" fill="rgb(242,65,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="54.64" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_execute:1569 (19 samples, 0.03%)</title><rect x="985.7" y="165" width="0.3" height="15.0" fill="rgb(226,190,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="988.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> /tornado/concurrent.py:is_future:380 (12 samples, 0.02%)</title><rect x="224.0" y="373" width="0.2" height="15.0" fill="rgb(216,99,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="226.99" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1141 (59 samples, 0.09%)</title><rect x="511.9" y="405" width="1.1" height="15.0" fill="rgb(235,77,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.91" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:update:834 (9 samples, 0.01%)</title><rect x="815.8" y="181" width="0.2" height="15.0" fill="rgb(236,47,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="818.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> /tornado/web.py:clear:292 (62 samples, 0.09%)</title><rect x="919.4" y="165" width="1.1" height="15.0" fill="rgb(226,25,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="922.39" 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> /tornado/http1connection.py:_clear_callbacks:276 (110 samples, 0.17%)</title><rect x="448.8" y="357" width="2.0" height="15.0" fill="rgb(224,160,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.84" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_execute:1579 (60 samples, 0.09%)</title><rect x="986.2" y="165" width="1.1" height="15.0" fill="rgb(231,177,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="989.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> /tornado/web.py:execute:2228 (564 samples, 0.85%)</title><rect x="437.5" y="325" width="10.0" height="15.0" fill="rgb(227,111,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.46" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:format_datetime:183 (172 samples, 0.26%)</title><rect x="954.3" y="117" width="3.1" height="15.0" fill="rgb(225,75,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="957.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> /tornado/routing.py:headers_received:242 (174 samples, 0.26%)</title><rect x="423.1" y="357" width="3.1" height="15.0" fill="rgb(234,176,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.09" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:__init__:2168 (24 samples, 0.04%)</title><rect x="893.1" y="101" width="0.4" height="15.0" fill="rgb(235,218,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="896.07" 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> /tornado/http1connection.py:_server_request_loop:751 (27 samples, 0.04%)</title><rect x="512.5" y="389" width="0.5" height="15.0" fill="rgb(252,51,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.48" y="399.5" font-size="12" 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,892 samples, 2.86%)</title><rect x="169.4" y="341" width="33.8" height="15.0" fill="rgb(221,65,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="172.37" y="351.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> /tornado/web.py:clear:294 (10 samples, 0.02%)</title><rect x="540.9" y="229" width="0.2" height="15.0" fill="rgb(240,40,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.89" 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> /tornado/iostream.py:_check_max_bytes:1039 (16 samples, 0.02%)</title><rect x="725.4" y="197" width="0.2" height="15.0" fill="rgb(241,204,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.36" 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> /tornado/httputil.py:__init__:361 (11 samples, 0.02%)</title><rect x="843.8" y="213" width="0.2" height="15.0" fill="rgb(226,65,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="846.77" 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/selector_events.py:_write_to_self:160 (6 samples, 0.01%)</title><rect x="392.8" y="389" width="0.1" height="15.0" fill="rgb(215,47,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="395.84" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:287 (83 samples, 0.13%)</title><rect x="393.2" y="405" width="1.5" height="15.0" fill="rgb(247,18,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="396.23" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:<listcomp>:2216 (52 samples, 0.08%)</title><rect x="964.0" y="181" width="1.0" height="15.0" fill="rgb(232,228,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.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> /tornado/gen.py:convert_yielded:1361 (1,494 samples, 2.26%)</title><rect x="224.5" y="389" width="26.7" height="15.0" fill="rgb(234,115,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="227.51" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_handle_events:710 (8 samples, 0.01%)</title><rect x="590.6" y="405" width="0.1" height="15.0" fill="rgb(224,214,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="593.60" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:<genexpr>:869 (23 samples, 0.03%)</title><rect x="206.4" y="389" width="0.4" height="15.0" fill="rgb(251,142,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="209.40" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_add_error_listener:1125 (66 samples, 0.10%)</title><rect x="518.5" y="325" width="1.2" height="15.0" fill="rgb(218,74,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/re.py:_compile:289 (23 samples, 0.03%)</title><rect x="528.4" y="293" width="0.4" height="15.0" fill="rgb(211,26,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.37" y="303.5" font-size="12" 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 (123 samples, 0.19%)</title><rect x="779.4" y="197" width="2.2" height="15.0" fill="rgb(214,149,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.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> /tornado/routing.py:__init__:235 (6 samples, 0.01%)</title><rect x="687.7" y="277" width="0.1" height="15.0" fill="rgb(217,153,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.74" 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> /tornado/gen.py:handle_yield:1229 (13 samples, 0.02%)</title><rect x="1060.1" y="149" width="0.3" height="15.0" fill="rgb(230,227,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.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> /tornado/iostream.py:_read_to_buffer:944 (125 samples, 0.19%)</title><rect x="566.1" y="357" width="2.2" height="15.0" fill="rgb(242,5,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.10" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1145 (42 samples, 0.06%)</title><rect x="513.0" y="405" width="0.7" height="15.0" fill="rgb(212,61,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.96" y="415.5" font-size="12" 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 (57 samples, 0.09%)</title><rect x="166.0" y="341" width="1.1" height="15.0" fill="rgb(241,21,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.05" y="351.5" font-size="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 (19 samples, 0.03%)</title><rect x="695.4" y="261" width="0.4" height="15.0" fill="rgb(215,85,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="698.42" y="271.5" font-size="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:_fileobj_lookup:224 (7 samples, 0.01%)</title><rect x="736.9" y="133" width="0.1" height="15.0" fill="rgb(205,226,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.90" 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>(idle) (2,255 samples, 3.41%)</title><rect x="10.0" y="517" width="40.3" height="15.0" fill="rgb(248,25,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >(id..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:__init__:103 (20 samples, 0.03%)</title><rect x="537.1" y="261" width="0.3" height="15.0" fill="rgb(246,174,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.08" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_handle_write:1060 (16 samples, 0.02%)</title><rect x="486.1" y="293" width="0.3" height="15.0" fill="rgb(236,126,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:call_at:144 (133 samples, 0.20%)</title><rect x="294.2" y="389" width="2.4" height="15.0" fill="rgb(218,215,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.22" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/weakref.py:__getitem__:135 (11 samples, 0.02%)</title><rect x="1104.8" y="133" width="0.2" height="15.0" fill="rgb(233,0,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1107.81" 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> /tornado/iostream.py:_read_to_buffer_loop:808 (24 samples, 0.04%)</title><rect x="706.5" y="229" width="0.4" height="15.0" fill="rgb(240,19,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.45" 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> /tornado/web.py:get_target_delegate:1886 (158 samples, 0.24%)</title><rect x="426.9" y="309" width="2.8" height="15.0" fill="rgb(237,195,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="429.86" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_find_read_pos:1030 (24 samples, 0.04%)</title><rect x="578.0" y="357" width="0.4" height="15.0" fill="rgb(219,31,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="581.01" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:write_headers:395 (12 samples, 0.02%)</title><rect x="480.8" y="325" width="0.3" height="15.0" fill="rgb(252,168,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.84" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/util.py:timedelta_to_seconds:455 (43 samples, 0.07%)</title><rect x="261.9" y="389" width="0.8" height="15.0" fill="rgb(238,38,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.93" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_to_buffer_loop:835 (263 samples, 0.40%)</title><rect x="721.1" y="229" width="4.7" height="15.0" fill="rgb(241,192,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="724.11" 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/base_events.py:_call_soon:596 (77 samples, 0.12%)</title><rect x="585.7" y="309" width="1.4" height="15.0" fill="rgb(206,136,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.74" y="319.5" font-size="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 (17 samples, 0.03%)</title><rect x="260.5" y="389" width="0.3" height="15.0" fill="rgb(208,70,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.54" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/enum.py:__call__:291 (29 samples, 0.04%)</title><rect x="619.6" y="341" width="0.5" height="15.0" fill="rgb(241,177,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.56" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:remove_handler:114 (6 samples, 0.01%)</title><rect x="575.8" y="325" width="0.1" height="15.0" fill="rgb(253,179,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.81" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/typing.py:__new__:2004 (99 samples, 0.15%)</title><rect x="915.8" y="165" width="1.7" height="15.0" fill="rgb(250,35,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="918.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/events.py:__init__:110 (19 samples, 0.03%)</title><rect x="507.0" y="309" width="0.3" height="15.0" fill="rgb(240,213,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.98" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:handle_yield:1235 (135 samples, 0.20%)</title><rect x="445.0" y="277" width="2.4" height="15.0" fill="rgb(248,58,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="447.98" 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> /tornado/http1connection.py:_read_message:188 (9 samples, 0.01%)</title><rect x="898.6" y="245" width="0.2" height="15.0" fill="rgb(218,155,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.64" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:__init__:233 (9 samples, 0.01%)</title><rect x="522.7" y="341" width="0.1" height="15.0" fill="rgb(244,103,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.67" y="351.5" font-size="12" 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 (150 samples, 0.23%)</title><rect x="364.2" y="421" width="2.7" height="15.0" fill="rgb(217,82,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="367.23" y="431.5" font-size="12" 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 (6 samples, 0.01%)</title><rect x="388.7" y="357" width="0.1" height="15.0" fill="rgb(244,39,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="391.71" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:match:525 (15 samples, 0.02%)</title><rect x="428.0" y="261" width="0.3" height="15.0" fill="rgb(250,132,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="431.02" y="271.5" font-size="12" 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 (6 samples, 0.01%)</title><rect x="442.9" y="213" width="0.1" height="15.0" fill="rgb(251,208,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.93" 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>/enum.py:__new__:526 (7 samples, 0.01%)</title><rect x="651.0" y="293" width="0.1" height="15.0" fill="rgb(246,111,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.01" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:with_timeout:964 (8 samples, 0.01%)</title><rect x="532.2" y="325" width="0.2" height="15.0" fill="rgb(246,192,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.23" y="335.5" font-size="12" 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 (32 samples, 0.05%)</title><rect x="516.4" y="341" width="0.5" height="15.0" fill="rgb(249,117,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.35" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:null_wrapper:302 (83 samples, 0.13%)</title><rect x="560.4" y="421" width="1.5" height="15.0" fill="rgb(211,210,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.40" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:299 (8 samples, 0.01%)</title><rect x="692.3" y="293" width="0.2" height="15.0" fill="rgb(251,19,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.34" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:__init__:103 (26 samples, 0.04%)</title><rect x="484.7" y="309" width="0.4" height="15.0" fill="rgb(254,170,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.67" y="319.5" font-size="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 (9 samples, 0.01%)</title><rect x="444.3" y="197" width="0.1" height="15.0" fill="rgb(230,96,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="447.27" 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:get_event_loop:691 (62 samples, 0.09%)</title><rect x="483.2" y="309" width="1.1" height="15.0" fill="rgb(249,85,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="486.19" y="319.5" font-size="12" 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 (36 samples, 0.05%)</title><rect x="536.4" y="261" width="0.6" height="15.0" fill="rgb(227,139,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="539.39" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:325 (13 samples, 0.02%)</title><rect x="977.7" y="181" width="0.2" height="15.0" fill="rgb(248,206,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.67" 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> /tornado/iostream.py:read_until_regex:353 (66 samples, 0.10%)</title><rect x="526.7" y="325" width="1.2" height="15.0" fill="rgb(238,77,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.71" y="335.5" font-size="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 (7 samples, 0.01%)</title><rect x="695.8" y="261" width="0.1" height="15.0" fill="rgb(209,206,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="698.75" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:add_timeout:619 (210 samples, 0.32%)</title><rect x="257.6" y="405" width="3.8" height="15.0" fill="rgb(237,104,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="260.61" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_try_inline_read:927 (55 samples, 0.08%)</title><rect x="730.4" y="245" width="1.0" height="15.0" fill="rgb(223,189,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.43" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:find_handler:2100 (1,770 samples, 2.68%)</title><rect x="865.7" y="213" width="31.6" height="15.0" fill="rgb(231,216,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="868.66" 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>/asyncio/selector_events.py:add_reader:336 (257 samples, 0.39%)</title><rect x="1102.3" y="165" width="4.6" height="15.0" fill="rgb(220,189,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1105.29" 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> /tornado/httputil.py:format_timestamp:841 (18 samples, 0.03%)</title><rect x="434.8" y="277" width="0.3" height="15.0" fill="rgb(250,86,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.82" 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:_ensure_fd_no_transport:251 (41 samples, 0.06%)</title><rect x="570.7" y="293" width="0.8" height="15.0" fill="rgb(226,125,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.72" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:__init__:699 (13 samples, 0.02%)</title><rect x="655.3" y="357" width="0.2" height="15.0" fill="rgb(248,137,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="658.29" y="367.5" font-size="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 (19 samples, 0.03%)</title><rect x="666.4" y="309" width="0.4" height="15.0" fill="rgb(225,229,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.42" y="319.5" font-size="12" 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 (49 samples, 0.07%)</title><rect x="551.5" y="389" width="0.8" height="15.0" fill="rgb(217,180,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.46" y="399.5" font-size="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:parse_qsl:685 (198 samples, 0.30%)</title><rect x="856.1" y="165" width="3.6" height="15.0" fill="rgb(220,88,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="859.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 (196 samples, 0.30%)</title><rect x="363.8" y="437" width="3.5" height="15.0" fill="rgb(224,137,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="366.79" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:168 (77 samples, 0.12%)</title><rect x="532.1" y="341" width="1.3" height="15.0" fill="rgb(229,144,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.07" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_add_error_listener:1125 (56 samples, 0.08%)</title><rect x="449.8" y="325" width="1.0" height="15.0" fill="rgb(214,22,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.78" y="335.5" font-size="12" 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 (16 samples, 0.02%)</title><rect x="202.7" y="309" width="0.3" height="15.0" fill="rgb(229,138,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.72" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:318 (38 samples, 0.06%)</title><rect x="439.0" y="309" width="0.7" height="15.0" fill="rgb(229,63,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.00" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_run_close_callback:646 (36 samples, 0.05%)</title><rect x="580.6" y="373" width="0.6" height="15.0" fill="rgb(229,50,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="583.56" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:with_timeout:988 (6 samples, 0.01%)</title><rect x="533.3" y="325" width="0.1" height="15.0" fill="rgb(222,66,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.33" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:null_wrapper:300 (8,785 samples, 13.29%)</title><rect x="403.5" y="421" width="156.9" height="15.0" fill="rgb(222,38,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.54" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhodakov/.pye..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:with_timeout:983 (6 samples, 0.01%)</title><rect x="276.1" y="421" width="0.1" height="15.0" fill="rgb(218,210,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.08" y="431.5" font-size="12" 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 (124 samples, 0.19%)</title><rect x="776.8" y="181" width="2.2" height="15.0" fill="rgb(250,114,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="779.77" 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> /tornado/gen.py:with_timeout:963 (1,633 samples, 2.47%)</title><rect x="222.0" y="421" width="29.2" height="15.0" fill="rgb(233,57,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="225.03" y="431.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> /tornado/stack_context.py:wrap:296 (45 samples, 0.07%)</title><rect x="962.1" y="149" width="0.8" height="15.0" fill="rgb(214,139,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.10" 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> /tornado/platform/asyncio.py:add_callback:152 (7 samples, 0.01%)</title><rect x="382.2" y="421" width="0.1" height="15.0" fill="rgb(209,180,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.20" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httpserver.py:start_request:197 (34 samples, 0.05%)</title><rect x="685.2" y="309" width="0.6" height="15.0" fill="rgb(220,58,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="688.17" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:__exit__:54 (6 samples, 0.01%)</title><rect x="898.4" y="229" width="0.1" height="15.0" fill="rgb(240,17,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.41" 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> /tornado/httpserver.py:on_close:208 (20 samples, 0.03%)</title><rect x="512.6" y="373" width="0.4" height="15.0" fill="rgb(214,1,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.60" y="383.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="1058.3" y="37" width="0.1" height="15.0" fill="rgb(245,148,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.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>/inspect.py:isclass:79 (11 samples, 0.02%)</title><rect x="887.7" y="117" width="0.2" height="15.0" fill="rgb(218,10,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="890.66" 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> /tornado/gen.py:run:1169 (7 samples, 0.01%)</title><rect x="546.7" y="405" width="0.1" height="15.0" fill="rgb(205,69,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.69" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:_run_callback:758 (9,345 samples, 14.14%)</title><rect x="395.0" y="437" width="166.9" height="15.0" fill="rgb(208,117,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="398.02" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhodakov/.pyen..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:start_serving:725 (882 samples, 1.33%)</title><rect x="1173.3" y="357" width="15.8" height="15.0" fill="rgb(225,224,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1176.34" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/netutil.py:accept_handler:261 (285 samples, 0.43%)</title><rect x="621.0" y="405" width="5.1" height="15.0" fill="rgb(213,174,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="624.01" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:__init__:119 (83 samples, 0.13%)</title><rect x="515.5" y="373" width="1.5" height="15.0" fill="rgb(230,135,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_clear_callbacks:273 (9 samples, 0.01%)</title><rect x="680.6" y="293" width="0.2" height="15.0" fill="rgb(232,107,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.63" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_run_close_callback:662 (6 samples, 0.01%)</title><rect x="589.5" y="373" width="0.1" height="15.0" fill="rgb(249,0,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="592.47" y="383.5" font-size="12" 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 (62 samples, 0.09%)</title><rect x="787.6" y="197" width="1.1" height="15.0" fill="rgb(208,54,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="790.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> /tornado/http1connection.py:_read_message:172 (20 samples, 0.03%)</title><rect x="539.7" y="309" width="0.3" height="15.0" fill="rgb(222,39,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.65" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:set_nodelay:1443 (11 samples, 0.02%)</title><rect x="487.9" y="325" width="0.2" height="15.0" fill="rgb(228,109,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.89" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:read_response:150 (13 samples, 0.02%)</title><rect x="688.6" y="309" width="0.2" height="15.0" fill="rgb(216,59,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="691.56" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:flush:970 (6 samples, 0.01%)</title><rect x="469.5" y="341" width="0.1" height="15.0" fill="rgb(247,49,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.51" y="351.5" font-size="12" 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:555 (6 samples, 0.01%)</title><rect x="344.7" y="357" width="0.1" height="15.0" fill="rgb(220,64,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="347.66" y="367.5" font-size="12" 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:_add_reader:264 (8 samples, 0.01%)</title><rect x="542.6" y="213" width="0.1" height="15.0" fill="rgb(205,70,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.57" 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:ensure_future:516 (27 samples, 0.04%)</title><rect x="167.1" y="357" width="0.5" height="15.0" fill="rgb(248,100,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="170.10" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:handle_yield:1186 (34 samples, 0.05%)</title><rect x="1136.8" y="245" width="0.6" height="15.0" fill="rgb(208,133,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.75" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1154 (13 samples, 0.02%)</title><rect x="496.0" y="389" width="0.3" height="15.0" fill="rgb(222,99,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.03" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:clear:299 (29 samples, 0.04%)</title><rect x="958.4" y="165" width="0.5" height="15.0" fill="rgb(242,77,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.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> /tornado/http1connection.py:_clear_callbacks:276 (8 samples, 0.01%)</title><rect x="806.9" y="229" width="0.1" height="15.0" fill="rgb(236,38,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.89" 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> /tornado/ioloop.py:split_fd:820 (8 samples, 0.01%)</title><rect x="569.8" y="309" width="0.2" height="15.0" fill="rgb(234,142,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.81" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:add_timeout:620 (1,040 samples, 1.57%)</title><rect x="767.1" y="245" width="18.5" height="15.0" fill="rgb(251,40,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="770.07" y="255.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="503.2" y="341" width="0.2" height="15.0" fill="rgb(235,62,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.25" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:update:834 (6 samples, 0.01%)</title><rect x="934.9" y="133" width="0.1" height="15.0" fill="rgb(245,225,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="937.89" 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 (29 samples, 0.04%)</title><rect x="1059.0" y="53" width="0.6" height="15.0" fill="rgb(236,175,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.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>/copy.py:deepcopy:184 (7 samples, 0.01%)</title><rect x="863.1" y="197" width="0.1" height="15.0" fill="rgb(212,180,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.07" 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> /tornado/gen.py:wrapper:346 (369 samples, 0.56%)</title><rect x="440.8" y="309" width="6.6" height="15.0" fill="rgb(247,55,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.84" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_set_read_callback:860 (8 samples, 0.01%)</title><rect x="698.1" y="245" width="0.1" height="15.0" fill="rgb(248,151,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.08" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:244 (37 samples, 0.06%)</title><rect x="1077.0" y="245" width="0.6" height="15.0" fill="rgb(212,136,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.97" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httpserver.py:__init__:243 (345 samples, 0.52%)</title><rect x="645.0" y="357" width="6.1" height="15.0" fill="rgb(246,130,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.97" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_set_read_callback:859 (8 samples, 0.01%)</title><rect x="697.9" y="245" width="0.2" height="15.0" fill="rgb(220,207,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.93" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:_create_future:187 (48 samples, 0.07%)</title><rect x="207.1" y="389" width="0.9" height="15.0" fill="rgb(236,12,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.12" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__getitem__:229 (11 samples, 0.02%)</title><rect x="902.2" y="197" width="0.2" height="15.0" fill="rgb(244,199,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="905.25" 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_threadsafe:624 (50 samples, 0.08%)</title><rect x="506.6" y="341" width="0.9" height="15.0" fill="rgb(229,180,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.60" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_run_read_callback:878 (110 samples, 0.17%)</title><rect x="727.5" y="213" width="2.0" height="15.0" fill="rgb(231,135,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="730.52" 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> /tornado/http1connection.py:__init__:48 (24 samples, 0.04%)</title><rect x="839.7" y="229" width="0.4" height="15.0" fill="rgb(208,61,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="842.69" 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>/selectors.py:select:450 (8 samples, 0.01%)</title><rect x="52.2" y="453" width="0.1" height="15.0" fill="rgb(248,64,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="55.16" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_to_buffer_loop:786 (9 samples, 0.01%)</title><rect x="565.3" y="373" width="0.1" height="15.0" fill="rgb(206,226,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.26" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__init__:136 (13 samples, 0.02%)</title><rect x="921.9" y="149" width="0.2" height="15.0" fill="rgb(216,131,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="924.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> /tornado/http1connection.py:_read_message:238 (965 samples, 1.46%)</title><rect x="430.3" y="373" width="17.2" height="15.0" fill="rgb(248,94,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.30" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:convert_yielded:1361 (10 samples, 0.02%)</title><rect x="541.6" y="181" width="0.1" height="15.0" fill="rgb(217,110,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.57" 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>/copy.py:_keep_alive:264 (7 samples, 0.01%)</title><rect x="864.0" y="181" width="0.2" height="15.0" fill="rgb(241,199,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="867.03" 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:596 (131 samples, 0.20%)</title><rect x="386.6" y="389" width="2.4" height="15.0" fill="rgb(209,56,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.63" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:execute:2227 (27 samples, 0.04%)</title><rect x="965.0" y="197" width="0.5" height="15.0" fill="rgb(227,151,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.03" 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> /tornado/gen.py:_create_future:189 (14 samples, 0.02%)</title><rect x="969.8" y="165" width="0.3" height="15.0" fill="rgb(229,9,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.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> /tornado/gen.py:multi_future:877 (13 samples, 0.02%)</title><rect x="208.1" y="405" width="0.2" height="15.0" fill="rgb(217,37,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="211.08" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:336 (68 samples, 0.10%)</title><rect x="537.9" y="357" width="1.2" height="15.0" fill="rgb(215,210,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.89" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:current:288 (6 samples, 0.01%)</title><rect x="285.0" y="405" width="0.1" height="15.0" fill="rgb(226,75,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="288.01" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:find_handler:2100 (192 samples, 0.29%)</title><rect x="426.2" y="341" width="3.5" height="15.0" fill="rgb(233,108,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="429.25" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/escape.py:utf8:193 (6 samples, 0.01%)</title><rect x="473.0" y="309" width="0.1" height="15.0" fill="rgb(205,81,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.96" y="319.5" font-size="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 (8 samples, 0.01%)</title><rect x="765.4" y="229" width="0.1" height="15.0" fill="rgb(247,50,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="768.39" 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>/_collections_abc.py:get:660 (36 samples, 0.05%)</title><rect x="899.2" y="229" width="0.7" height="15.0" fill="rgb(225,83,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.23" 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> /tornado/concurrent.py:is_future:380 (7 samples, 0.01%)</title><rect x="802.2" y="213" width="0.1" height="15.0" fill="rgb(237,193,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.16" 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> /tornado/http1connection.py:_clear_callbacks:275 (6 samples, 0.01%)</title><rect x="558.4" y="357" width="0.1" height="15.0" fill="rgb(223,72,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.39" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:start_request:212 (106 samples, 0.16%)</title><rect x="686.1" y="293" width="1.9" height="15.0" fill="rgb(228,17,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.11" y="303.5" font-size="12" 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 (8 samples, 0.01%)</title><rect x="797.6" y="229" width="0.2" height="15.0" fill="rgb(238,104,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.64" 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:_remove_reader:291 (29 samples, 0.04%)</title><rect x="575.3" y="293" width="0.5" height="15.0" fill="rgb(221,153,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.28" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:close:417 (14 samples, 0.02%)</title><rect x="576.6" y="309" width="0.2" height="15.0" fill="rgb(209,19,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.56" y="319.5" font-size="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:unregister:248 (34 samples, 0.05%)</title><rect x="574.3" y="261" width="0.7" height="15.0" fill="rgb(218,107,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.35" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:copy:598 (7 samples, 0.01%)</title><rect x="760.6" y="213" width="0.1" height="15.0" fill="rgb(239,77,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="763.56" 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 (9 samples, 0.01%)</title><rect x="225.8" y="341" width="0.1" height="15.0" fill="rgb(206,13,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="228.76" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:294 (11 samples, 0.02%)</title><rect x="961.9" y="149" width="0.2" height="15.0" fill="rgb(228,205,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.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/tasks.py:ensure_future:512 (80 samples, 0.12%)</title><rect x="165.7" y="357" width="1.4" height="15.0" fill="rgb(224,167,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.67" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:__init__:191 (13 samples, 0.02%)</title><rect x="918.8" y="181" width="0.3" height="15.0" fill="rgb(253,78,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.83" 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> /tornado/iostream.py:set_close_callback:606 (3,162 samples, 4.78%)</title><rect x="1079.1" y="229" width="56.5" height="15.0" fill="rgb(233,57,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1082.15" y="239.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> /tornado/concurrent.py:is_future:380 (7 samples, 0.01%)</title><rect x="1174.4" y="325" width="0.1" height="15.0" fill="rgb(207,178,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1177.36" y="335.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="202.3" y="293" width="0.1" height="15.0" fill="rgb(240,113,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.26" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__init__:146 (936 samples, 1.42%)</title><rect x="924.2" y="149" width="16.7" height="15.0" fill="rgb(236,146,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="927.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>/selectors.py:select:457 (21 samples, 0.03%)</title><rect x="52.8" y="453" width="0.3" height="15.0" fill="rgb(247,132,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="55.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse_line:198 (433 samples, 0.66%)</title><rect x="822.9" y="197" width="7.8" height="15.0" fill="rgb(221,58,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="825.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> /tornado/http1connection.py:set_close_callback:290 (38 samples, 0.06%)</title><rect x="468.5" y="341" width="0.7" height="15.0" fill="rgb(218,197,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.53" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:__init__:252 (59 samples, 0.09%)</title><rect x="634.9" y="357" width="1.1" height="15.0" fill="rgb(224,155,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.92" y="367.5" font-size="12" 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 (44 samples, 0.07%)</title><rect x="483.5" y="293" width="0.8" height="15.0" fill="rgb(250,95,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="486.48" y="303.5" font-size="12" 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 (14 samples, 0.02%)</title><rect x="250.7" y="309" width="0.2" height="15.0" fill="rgb(248,40,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.67" y="319.5" font-size="12" 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 (519 samples, 0.79%)</title><rect x="369.3" y="405" width="9.2" height="15.0" fill="rgb(229,131,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.25" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1147 (18,407 samples, 27.85%)</title><rect x="807.0" y="261" width="328.7" height="15.0" fill="rgb(213,208,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="810.04" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhodakov/.pyenv/versions/avio/lib/pyt..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_write_to_self:164 (14 samples, 0.02%)</title><rect x="393.0" y="389" width="0.2" height="15.0" fill="rgb(237,214,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="395.96" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:finish:457 (6 samples, 0.01%)</title><rect x="487.3" y="341" width="0.1" height="15.0" fill="rgb(236,125,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.26" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:closed:678 (10 samples, 0.02%)</title><rect x="482.6" y="309" width="0.1" height="15.0" fill="rgb(224,105,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.57" y="319.5" font-size="12" 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:1358 (15 samples, 0.02%)</title><rect x="51.2" y="469" width="0.3" height="15.0" fill="rgb(219,47,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="54.25" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:is_future:380 (7 samples, 0.01%)</title><rect x="549.3" y="341" width="0.1" height="15.0" fill="rgb(218,132,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.31" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:294 (19 samples, 0.03%)</title><rect x="357.0" y="373" width="0.3" height="15.0" fill="rgb(230,129,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.98" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1149 (6 samples, 0.01%)</title><rect x="495.9" y="389" width="0.1" height="15.0" fill="rgb(234,0,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.92" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:update:840 (24 samples, 0.04%)</title><rect x="936.0" y="133" width="0.4" height="15.0" fill="rgb(240,72,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="938.96" 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> /tornado/web.py:_has_stream_request_body:1809 (19 samples, 0.03%)</title><rect x="895.6" y="85" width="0.4" height="15.0" fill="rgb(226,172,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="898.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> /tornado/iostream.py:_maybe_add_error_listener:1125 (6 samples, 0.01%)</title><rect x="806.9" y="197" width="0.1" height="15.0" fill="rgb(213,98,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.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> /tornado/ioloop.py:add_future:717 (29 samples, 0.04%)</title><rect x="509.8" y="357" width="0.6" height="15.0" fill="rgb(223,10,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="512.83" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_has_stream_request_body:1811 (6 samples, 0.01%)</title><rect x="429.6" y="213" width="0.1" height="15.0" fill="rgb(249,157,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.57" 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_event_loop:691 (41 samples, 0.06%)</title><rect x="797.5" y="245" width="0.8" height="15.0" fill="rgb(244,53,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.54" y="255.5" font-size="12" 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:remove_reader:341 (68 samples, 0.10%)</title><rect x="570.5" y="309" width="1.2" height="15.0" fill="rgb(206,213,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.53" y="319.5" font-size="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:get_key:191 (193 samples, 0.29%)</title><rect x="1123.4" y="133" width="3.5" height="15.0" fill="rgb(214,177,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.45" 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> /tornado/http1connection.py:finish:480 (147 samples, 0.22%)</title><rect x="488.5" y="341" width="2.6" height="15.0" fill="rgb(243,115,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.46" y="351.5" font-size="12" 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 (18 samples, 0.03%)</title><rect x="367.0" y="421" width="0.3" height="15.0" fill="rgb(254,158,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="369.97" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:timeout_callback:980 (28 samples, 0.04%)</title><rect x="552.4" y="405" width="0.5" height="15.0" fill="rgb(235,193,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.42" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:_contains_yieldpoint:715 (8 samples, 0.01%)</title><rect x="1137.2" y="229" width="0.2" height="15.0" fill="rgb(207,178,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1140.22" 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> /tornado/gen.py:__init__:1068 (6 samples, 0.01%)</title><rect x="796.7" y="277" width="0.1" height="15.0" fill="rgb(233,158,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.71" 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> /tornado/gen.py:_contains_yieldpoint:713 (17 samples, 0.03%)</title><rect x="1136.9" y="229" width="0.3" height="15.0" fill="rgb(229,152,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.91" 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>/_weakrefset.py:__contains__:75 (21 samples, 0.03%)</title><rect x="467.4" y="293" width="0.4" height="15.0" fill="rgb(244,136,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.44" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_execute:1556 (19 samples, 0.03%)</title><rect x="978.1" y="165" width="0.3" height="15.0" fill="rgb(236,46,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="981.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:_get_running_loop:645 (45 samples, 0.07%)</title><rect x="754.1" y="213" width="0.8" height="15.0" fill="rgb(221,122,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="757.14" 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> /tornado/iostream.py:_maybe_add_error_listener:1124 (16 samples, 0.02%)</title><rect x="683.2" y="261" width="0.3" height="15.0" fill="rgb(216,182,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="686.20" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:format_datetime:174 (304 samples, 0.46%)</title><rect x="948.4" y="117" width="5.4" height="15.0" fill="rgb(229,109,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="951.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> /tornado/stack_context.py:wrap:292 (30 samples, 0.05%)</title><rect x="1072.9" y="117" width="0.6" height="15.0" fill="rgb(212,65,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.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> /tornado/iostream.py:_handle_write:1047 (6 samples, 0.01%)</title><rect x="486.0" y="293" width="0.1" height="15.0" fill="rgb(244,209,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.01" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:finish:478 (38 samples, 0.06%)</title><rect x="487.5" y="341" width="0.7" height="15.0" fill="rgb(238,136,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.51" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:close:615 (6 samples, 0.01%)</title><rect x="569.0" y="341" width="0.1" height="15.0" fill="rgb(228,188,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="571.99" y="351.5" font-size="12" 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 (16 samples, 0.02%)</title><rect x="369.0" y="405" width="0.3" height="15.0" fill="rgb(243,197,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.97" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_consume:1098 (41 samples, 0.06%)</title><rect x="728.3" y="197" width="0.7" height="15.0" fill="rgb(218,7,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="731.29" 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> /tornado/gen.py:_contains_yieldpoint:713 (7 samples, 0.01%)</title><rect x="160.3" y="405" width="0.1" height="15.0" fill="rgb(205,88,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.30" y="415.5" font-size="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:get_key:185 (8 samples, 0.01%)</title><rect x="736.6" y="165" width="0.1" height="15.0" fill="rgb(231,12,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.59" 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> /tornado/routing.py:find_handler:332 (35 samples, 0.05%)</title><rect x="427.8" y="277" width="0.6" height="15.0" fill="rgb(218,13,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="430.82" 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> /tornado/httputil.py:__init__:377 (56 samples, 0.08%)</title><rect x="424.5" y="341" width="1.0" height="15.0" fill="rgb(220,103,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.48" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse_body_arguments:757 (31 samples, 0.05%)</title><rect x="907.6" y="181" width="0.6" height="15.0" fill="rgb(223,42,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.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> /tornado/http1connection.py:__init__:105 (16 samples, 0.02%)</title><rect x="669.2" y="309" width="0.3" height="15.0" fill="rgb(228,68,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.17" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httpserver.py:start_request:198 (34 samples, 0.05%)</title><rect x="522.3" y="373" width="0.6" height="15.0" fill="rgb(243,197,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.30" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:dispatch:778 (25 samples, 0.04%)</title><rect x="504.7" y="341" width="0.4" height="15.0" fill="rgb(253,174,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.67" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1122 (14 samples, 0.02%)</title><rect x="413.6" y="389" width="0.2" height="15.0" fill="rgb(216,80,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.57" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:multi_future:870 (15 samples, 0.02%)</title><rect x="206.8" y="405" width="0.3" height="15.0" fill="rgb(238,201,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="209.81" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:_parse_body:483 (12 samples, 0.02%)</title><rect x="430.9" y="325" width="0.2" height="15.0" fill="rgb(223,24,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.86" y="335.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="368.4" y="405" width="0.1" height="15.0" fill="rgb(232,195,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.36" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:wrapper:803 (2,393 samples, 3.62%)</title><rect x="1017.3" y="133" width="42.7" height="15.0" fill="rgb(217,197,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1020.29" y="143.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>/functools.py:wrapper:803 (84 samples, 0.13%)</title><rect x="547.9" y="373" width="1.5" height="15.0" fill="rgb(214,28,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.94" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse_line:186 (57 samples, 0.09%)</title><rect x="820.3" y="197" width="1.0" height="15.0" fill="rgb(234,13,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="823.32" 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> /tornado/ioloop.py:add_future:717 (183 samples, 0.28%)</title><rect x="1168.2" y="293" width="3.3" height="15.0" fill="rgb(216,82,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1171.20" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:accept:216 (6 samples, 0.01%)</title><rect x="620.9" y="389" width="0.1" height="15.0" fill="rgb(230,66,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="623.87" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:dispatch:778 (7 samples, 0.01%)</title><rect x="442.4" y="245" width="0.1" height="15.0" fill="rgb(235,127,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.39" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:_intenum_converter:103 (584 samples, 0.88%)</title><rect x="603.5" y="357" width="10.4" height="15.0" fill="rgb(238,13,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="606.46" y="367.5" font-size="12" 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 (10 samples, 0.02%)</title><rect x="411.5" y="325" width="0.2" height="15.0" fill="rgb(224,225,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="414.50" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:copy:601 (15 samples, 0.02%)</title><rect x="760.7" y="213" width="0.3" height="15.0" fill="rgb(239,215,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="763.70" 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:ensure_future:512 (82 samples, 0.12%)</title><rect x="1021.3" y="101" width="1.5" height="15.0" fill="rgb(219,18,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1024.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> /tornado/netutil.py:accept_handler:262 (31,538 samples, 47.72%)</title><rect x="626.1" y="405" width="563.2" height="15.0" fill="rgb(252,64,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="629.10" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" > /tornado/netu..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/selector_events.py:_write_to_self:156 (12 samples, 0.02%)</title><rect x="389.8" y="389" width="0.2" height="15.0" fill="rgb(237,136,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="392.79" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:263 (127 samples, 0.19%)</title><rect x="448.5" y="373" width="2.3" height="15.0" fill="rgb(243,174,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.53" y="383.5" font-size="12" 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 (26 samples, 0.04%)</title><rect x="532.8" y="277" width="0.5" height="15.0" fill="rgb(207,17,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.83" 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> /tornado/gen.py:run:1149 (13 samples, 0.02%)</title><rect x="1135.7" y="261" width="0.2" height="15.0" fill="rgb(237,120,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.72" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_convert_header_value:383 (16 samples, 0.02%)</title><rect x="467.8" y="325" width="0.3" height="15.0" fill="rgb(239,119,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.82" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:with_timeout:976 (22 samples, 0.03%)</title><rect x="762.6" y="261" width="0.4" height="15.0" fill="rgb(227,80,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="765.57" y="271.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="411.8" y="357" width="0.1" height="15.0" fill="rgb(223,194,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="414.82" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:287 (26 samples, 0.04%)</title><rect x="587.9" y="325" width="0.5" height="15.0" fill="rgb(207,139,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.92" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:add:155 (186 samples, 0.28%)</title><rect x="825.6" y="181" width="3.4" height="15.0" fill="rgb(250,64,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="828.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> /tornado/ioloop.py:add_timeout:623 (748 samples, 1.13%)</title><rect x="262.7" y="405" width="13.4" height="15.0" fill="rgb(217,157,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="265.70" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:__init__:258 (6 samples, 0.01%)</title><rect x="636.9" y="357" width="0.1" height="15.0" fill="rgb(230,182,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.94" y="367.5" font-size="12" 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 (9 samples, 0.01%)</title><rect x="167.8" y="325" width="0.2" height="15.0" fill="rgb(228,124,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="170.81" y="335.5" font-size="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 (50 samples, 0.08%)</title><rect x="1130.8" y="101" width="0.8" height="15.0" fill="rgb(215,131,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1133.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>/asyncio/events.py:cancel:141 (25 samples, 0.04%)</title><rect x="794.5" y="181" width="0.5" height="15.0" fill="rgb(243,75,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.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>/typing.py:__new__:2001 (24 samples, 0.04%)</title><rect x="915.3" y="165" width="0.5" height="15.0" fill="rgb(212,185,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="918.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> /tornado/iostream.py:set_close_callback:605 (23 samples, 0.03%)</title><rect x="517.7" y="341" width="0.4" height="15.0" fill="rgb(224,61,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.66" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_try_inline_read:922 (228 samples, 0.35%)</title><rect x="726.3" y="245" width="4.1" height="15.0" fill="rgb(219,28,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="729.32" y="255.5" font-size="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:get_key:185 (59 samples, 0.09%)</title><rect x="1109.7" y="133" width="1.1" height="15.0" fill="rgb(206,224,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.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>/selectors.py:unregister:419 (54 samples, 0.08%)</title><rect x="574.0" y="277" width="1.0" height="15.0" fill="rgb(250,7,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.03" 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/base_events.py:call_soon:575 (6 samples, 0.01%)</title><rect x="244.9" y="341" width="0.1" height="15.0" fill="rgb(253,87,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.90" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:add_callback:154 (687 samples, 1.04%)</title><rect x="382.5" y="421" width="12.3" height="15.0" fill="rgb(205,14,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:with_timeout:965 (6 samples, 0.01%)</title><rect x="532.4" y="325" width="0.1" height="15.0" fill="rgb(223,119,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.37" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:__init__:189 (6 samples, 0.01%)</title><rect x="917.7" y="181" width="0.1" height="15.0" fill="rgb(222,190,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="920.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> /tornado/httputil.py:__init__:369 (283 samples, 0.43%)</title><rect x="845.4" y="213" width="5.0" height="15.0" fill="rgb(231,33,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="848.39" 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_futures.py:isfuture:31 (6 samples, 0.01%)</title><rect x="1022.7" y="85" width="0.1" height="15.0" fill="rgb(252,17,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1025.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> /tornado/http1connection.py:_read_message:245 (3,247 samples, 4.91%)</title><rect x="1077.6" y="245" width="58.0" height="15.0" fill="rgb(215,96,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1080.63" y="255.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> /tornado/gen.py:_create_future:187 (8 samples, 0.01%)</title><rect x="532.2" y="309" width="0.2" height="15.0" fill="rgb(245,113,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.23" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_server_request_loop:731 (15 samples, 0.02%)</title><rect x="514.1" y="389" width="0.3" height="15.0" fill="rgb(250,135,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="517.12" y="399.5" font-size="12" 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 (17 samples, 0.03%)</title><rect x="169.0" y="341" width="0.3" height="15.0" fill="rgb(235,186,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.97" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/posix.py:set_close_exec:28 (154 samples, 0.23%)</title><rect x="623.3" y="389" width="2.8" height="15.0" fill="rgb(238,179,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="626.35" y="399.5" font-size="12" 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 (57 samples, 0.09%)</title><rect x="968.7" y="133" width="1.0" height="15.0" fill="rgb(246,114,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="971.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> /tornado/concurrent.py:copy:595 (8 samples, 0.01%)</title><rect x="367.9" y="437" width="0.1" height="15.0" fill="rgb(233,17,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="370.86" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:with_timeout:964 (100 samples, 0.15%)</title><rect x="251.2" y="421" width="1.8" height="15.0" fill="rgb(227,36,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="254.19" y="431.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="778.3" y="165" width="0.1" height="15.0" fill="rgb(216,12,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.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>/asyncio/base_events.py:get_debug:1469 (7 samples, 0.01%)</title><rect x="778.6" y="149" width="0.2" height="15.0" fill="rgb(215,132,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.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> /tornado/gen.py:wrapper:326 (604 samples, 0.91%)</title><rect x="977.9" y="181" width="10.8" height="15.0" fill="rgb(211,80,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.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> /tornado/iostream.py:set_nodelay:1442 (8 samples, 0.01%)</title><rect x="487.7" y="325" width="0.2" height="15.0" fill="rgb(214,142,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.75" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/inspect.py:isawaitable:224 (10 samples, 0.02%)</title><rect x="224.3" y="373" width="0.2" height="15.0" fill="rgb(218,112,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="227.31" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:convert_yielded:1352 (10 samples, 0.02%)</title><rect x="751.8" y="229" width="0.2" height="15.0" fill="rgb(218,188,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="754.81" 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/events.py:__init__:113 (13 samples, 0.02%)</title><rect x="778.8" y="165" width="0.2" height="15.0" fill="rgb(227,88,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.75" 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:357 (7 samples, 0.01%)</title><rect x="499.1" y="341" width="0.1" height="15.0" fill="rgb(205,139,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.10" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__init__:376 (55 samples, 0.08%)</title><rect x="851.4" y="213" width="0.9" height="15.0" fill="rgb(218,102,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.35" 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> /tornado/gen.py:run:1141 (23 samples, 0.03%)</title><rect x="415.6" y="389" width="0.4" height="15.0" fill="rgb(237,31,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.55" y="399.5" font-size="12" 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 (17 samples, 0.03%)</title><rect x="579.7" y="341" width="0.3" height="15.0" fill="rgb(207,122,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.67" y="351.5" font-size="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 (7 samples, 0.01%)</title><rect x="260.7" y="373" width="0.1" height="15.0" fill="rgb(226,113,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.72" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse:217 (99 samples, 0.15%)</title><rect x="419.7" y="341" width="1.8" height="15.0" fill="rgb(207,114,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.75" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__setitem__:225 (24 samples, 0.04%)</title><rect x="830.2" y="165" width="0.5" height="15.0" fill="rgb(213,117,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="833.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> /tornado/web.py:_execute:1594 (2,453 samples, 3.71%)</title><rect x="452.1" y="373" width="43.8" height="15.0" fill="rgb(245,207,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="455.09" y="383.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> /tornado/iostream.py:_maybe_add_error_listener:1125 (40 samples, 0.06%)</title><rect x="559.0" y="325" width="0.7" height="15.0" fill="rgb(244,227,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.96" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__init__:373 (31 samples, 0.05%)</title><rect x="850.7" y="213" width="0.5" height="15.0" fill="rgb(240,145,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="853.68" 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> /tornado/gen.py:wrapper:297 (87 samples, 0.13%)</title><rect x="690.8" y="293" width="1.5" height="15.0" fill="rgb(211,65,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.79" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/re.py:findall:222 (52 samples, 0.08%)</title><rect x="462.7" y="325" width="0.9" height="15.0" fill="rgb(216,137,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="465.71" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:write_headers:359 (22 samples, 0.03%)</title><rect x="473.2" y="325" width="0.4" height="15.0" fill="rgb(213,229,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.23" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/inspect.py:isawaitable:224 (17 samples, 0.03%)</title><rect x="165.1" y="357" width="0.3" height="15.0" fill="rgb(214,84,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.08" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1133 (18 samples, 0.03%)</title><rect x="511.3" y="405" width="0.3" height="15.0" fill="rgb(209,102,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.30" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_handle_events:708 (10 samples, 0.02%)</title><rect x="564.7" y="405" width="0.2" height="15.0" fill="rgb(232,139,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_to_buffer:965 (13 samples, 0.02%)</title><rect x="577.3" y="357" width="0.2" height="15.0" fill="rgb(236,46,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.30" y="367.5" font-size="12" 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 (672 samples, 1.02%)</title><rect x="342.6" y="373" width="12.0" height="15.0" fill="rgb(209,205,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="345.63" y="383.5" font-size="12" 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 (20 samples, 0.03%)</title><rect x="778.4" y="165" width="0.4" height="15.0" fill="rgb(233,208,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.39" 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>/functools.py:dispatch:778 (45 samples, 0.07%)</title><rect x="163.5" y="373" width="0.8" height="15.0" fill="rgb(236,156,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.48" y="383.5" font-size="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 (10 samples, 0.02%)</title><rect x="433.7" y="261" width="0.2" height="15.0" fill="rgb(254,210,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.73" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:time:591 (19 samples, 0.03%)</title><rect x="293.7" y="389" width="0.3" height="15.0" fill="rgb(234,16,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.67" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_body:567 (8 samples, 0.01%)</title><rect x="901.4" y="229" width="0.2" height="15.0" fill="rgb(225,196,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="904.44" 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> /tornado/stack_context.py:wrap:296 (49 samples, 0.07%)</title><rect x="1170.5" y="277" width="0.9" height="15.0" fill="rgb(250,146,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1173.50" 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> /tornado/gen.py:__init__:1067 (12 samples, 0.02%)</title><rect x="796.5" y="277" width="0.2" height="15.0" fill="rgb(232,127,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.50" 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>/copy.py:deepcopy:185 (71 samples, 0.11%)</title><rect x="863.2" y="197" width="1.3" height="15.0" fill="rgb(241,9,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.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>/_collections_abc.py:get:660 (23 samples, 0.03%)</title><rect x="906.0" y="181" width="0.4" height="15.0" fill="rgb(230,165,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.03" 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> /tornado/httpserver.py:__init__:247 (27 samples, 0.04%)</title><rect x="651.1" y="357" width="0.5" height="15.0" fill="rgb(206,104,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.13" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__getitem__:229 (11 samples, 0.02%)</title><rect x="845.2" y="181" width="0.2" height="15.0" fill="rgb(217,164,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="848.19" 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 (49 samples, 0.07%)</title><rect x="633.5" y="309" width="0.9" height="15.0" fill="rgb(233,34,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="636.49" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:write_headers:374 (6 samples, 0.01%)</title><rect x="474.5" y="325" width="0.1" height="15.0" fill="rgb(213,69,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.50" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:add:153 (11 samples, 0.02%)</title><rect x="420.5" y="309" width="0.2" height="15.0" fill="rgb(222,212,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="423.48" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_set_read_callback:866 (122 samples, 0.18%)</title><rect x="698.2" y="245" width="2.2" height="15.0" fill="rgb(247,196,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.24" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/weakref.py:__getitem__:394 (21 samples, 0.03%)</title><rect x="801.5" y="213" width="0.3" height="15.0" fill="rgb(238,112,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.46" 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> /tornado/http1connection.py:_read_message:184 (94 samples, 0.14%)</title><rect x="838.4" y="245" width="1.7" height="15.0" fill="rgb(242,176,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="841.44" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:future_set_exc_info:635 (12 samples, 0.02%)</title><rect x="538.9" y="341" width="0.2" height="15.0" fill="rgb(228,79,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="541.89" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:handle_yield:1235 (421 samples, 0.64%)</title><rect x="1164.6" y="309" width="7.6" height="15.0" fill="rgb(238,219,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.64" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:__init__:253 (9 samples, 0.01%)</title><rect x="636.0" y="357" width="0.1" height="15.0" fill="rgb(220,204,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="638.97" y="367.5" font-size="12" 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 (343 samples, 0.52%)</title><rect x="245.0" y="341" width="6.1" height="15.0" fill="rgb(253,93,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="248.01" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:update:833 (575 samples, 0.87%)</title><rect x="924.6" y="133" width="10.3" height="15.0" fill="rgb(242,217,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="927.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> /tornado/http1connection.py:__init__:137 (13 samples, 0.02%)</title><rect x="684.1" y="309" width="0.2" height="15.0" fill="rgb(254,19,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.08" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/enum.py:__new__:526 (7 samples, 0.01%)</title><rect x="619.9" y="325" width="0.2" height="15.0" fill="rgb(242,12,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.94" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:execute:2216 (12 samples, 0.02%)</title><rect x="437.2" y="325" width="0.3" height="15.0" fill="rgb(236,46,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.25" y="335.5" font-size="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:__getitem__:70 (122 samples, 0.18%)</title><rect x="1111.7" y="117" width="2.2" height="15.0" fill="rgb(244,155,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1114.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> /tornado/gen.py:_create_future:187 (48 samples, 0.07%)</title><rect x="523.5" y="341" width="0.9" height="15.0" fill="rgb(240,109,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.53" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:handle_yield:1189 (11 samples, 0.02%)</title><rect x="800.2" y="261" width="0.2" height="15.0" fill="rgb(217,38,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.16" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1173 (13 samples, 0.02%)</title><rect x="503.2" y="389" width="0.2" height="15.0" fill="rgb(229,140,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.17" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:prepare:258 (7 samples, 0.01%)</title><rect x="985.9" y="149" width="0.1" height="15.0" fill="rgb(210,105,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="988.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>/_weakrefset.py:__contains__:72 (9 samples, 0.01%)</title><rect x="942.4" y="117" width="0.1" height="15.0" fill="rgb(235,104,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.37" 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> /tornado/httputil.py:split_host_and_port:997 (111 samples, 0.17%)</title><rect x="848.0" y="197" width="2.0" height="15.0" fill="rgb(239,82,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="851.03" 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>/enum.py:__call__:291 (44 samples, 0.07%)</title><rect x="650.3" y="309" width="0.8" height="15.0" fill="rgb(233,70,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.35" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/typing.py:_generic_new:1183 (22 samples, 0.03%)</title><rect x="916.8" y="149" width="0.4" height="15.0" fill="rgb(221,183,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="919.76" 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>/email/utils.py:_format_timetuple_and_zone:136 (20 samples, 0.03%)</title><rect x="436.2" y="229" width="0.3" height="15.0" fill="rgb(233,96,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.16" 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> /tornado/httputil.py:__init__:374 (7 samples, 0.01%)</title><rect x="851.2" y="213" width="0.2" height="15.0" fill="rgb(217,92,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.23" 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> /tornado/httputil.py:parse:214 (7 samples, 0.01%)</title><rect x="539.7" y="277" width="0.2" height="15.0" fill="rgb(223,49,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.73" 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> /tornado/gen.py:convert_yielded:1358 (13 samples, 0.02%)</title><rect x="1139.6" y="213" width="0.2" height="15.0" fill="rgb(240,194,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.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>/socket.py:accept:205 (232 samples, 0.35%)</title><rect x="592.3" y="389" width="4.1" height="15.0" fill="rgb(235,156,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.26" y="399.5" font-size="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 (10 samples, 0.02%)</title><rect x="467.3" y="293" width="0.1" height="15.0" fill="rgb(223,72,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.26" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:null_wrapper:298 (7 samples, 0.01%)</title><rect x="563.6" y="421" width="0.1" height="15.0" fill="rgb(230,124,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.62" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:format_timestamp:849 (805 samples, 1.22%)</title><rect x="943.0" y="149" width="14.4" height="15.0" fill="rgb(238,30,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.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> /tornado/iostream.py:_maybe_run_close_callback:644 (9 samples, 0.01%)</title><rect x="534.9" y="277" width="0.1" height="15.0" fill="rgb(229,25,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="537.85" 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> /tornado/http1connection.py:_read_message:238 (87 samples, 0.13%)</title><rect x="540.7" y="309" width="1.5" height="15.0" fill="rgb(233,56,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.69" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:add_handler:80 (1,831 samples, 2.77%)</title><rect x="1101.6" y="181" width="32.7" height="15.0" fill="rgb(221,46,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1104.58" y="191.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> /tornado/httputil.py:__getitem__:229 (8 samples, 0.01%)</title><rect x="460.5" y="309" width="0.2" height="15.0" fill="rgb(216,177,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.53" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:future_set_result_unless_cancelled:619 (139 samples, 0.21%)</title><rect x="544.0" y="389" width="2.5" height="15.0" fill="rgb(250,14,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.05" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_to_buffer_loop:841 (8 samples, 0.01%)</title><rect x="579.0" y="373" width="0.2" height="15.0" fill="rgb(205,114,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.03" y="383.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="368.4" y="421" width="0.1" height="15.0" fill="rgb(218,111,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.36" y="431.5" font-size="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 (270 samples, 0.41%)</title><rect x="194.2" y="325" width="4.8" height="15.0" fill="rgb(234,37,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="197.15" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_run_close_callback:641 (9 samples, 0.01%)</title><rect x="580.2" y="373" width="0.1" height="15.0" fill="rgb(246,119,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="583.15" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/weakref.py:__getitem__:394 (40 samples, 0.06%)</title><rect x="1018.2" y="101" width="0.7" height="15.0" fill="rgb(236,141,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1021.15" 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> /tornado/http1connection.py:_read_message:247 (18 samples, 0.03%)</title><rect x="448.0" y="373" width="0.4" height="15.0" fill="rgb(224,32,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.03" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:_create_future:189 (7 samples, 0.01%)</title><rect x="692.2" y="277" width="0.1" height="15.0" fill="rgb(213,96,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.20" 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/base_events.py:call_soon:575 (6 samples, 0.01%)</title><rect x="380.2" y="405" width="0.1" height="15.0" fill="rgb(223,78,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.20" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_try_inline_read:906 (29 samples, 0.04%)</title><rect x="703.8" y="245" width="0.5" height="15.0" fill="rgb(216,221,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="706.77" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:start_request:212 (26 samples, 0.04%)</title><rect x="522.4" y="357" width="0.5" height="15.0" fill="rgb(205,75,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.44" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__setitem__:223 (10 samples, 0.02%)</title><rect x="466.0" y="325" width="0.2" height="15.0" fill="rgb(209,215,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="468.98" y="335.5" font-size="12" 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 (6 samples, 0.01%)</title><rect x="368.1" y="405" width="0.1" height="15.0" fill="rgb(221,131,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.07" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:292 (21 samples, 0.03%)</title><rect x="541.8" y="181" width="0.4" height="15.0" fill="rgb(229,39,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.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> /tornado/gen.py:__init__:1078 (333 samples, 0.50%)</title><rect x="441.4" y="293" width="6.0" height="15.0" fill="rgb(206,171,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.44" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:add_future:717 (8 samples, 0.01%)</title><rect x="539.5" y="309" width="0.1" height="15.0" fill="rgb(224,50,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.48" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:remove_handler:118 (11 samples, 0.02%)</title><rect x="576.0" y="325" width="0.2" height="15.0" fill="rgb(249,108,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.99" y="335.5" font-size="12" 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 (25 samples, 0.04%)</title><rect x="131.3" y="357" width="0.5" height="15.0" fill="rgb(237,105,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="134.33" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:handle_yield:1221 (14 samples, 0.02%)</title><rect x="541.5" y="213" width="0.2" height="15.0" fill="rgb(230,113,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.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> /tornado/ioloop.py:current:288 (7 samples, 0.01%)</title><rect x="762.2" y="245" width="0.1" height="15.0" fill="rgb(254,97,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="765.22" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_run_close_callback:646 (20 samples, 0.03%)</title><rect x="518.9" y="309" width="0.4" height="15.0" fill="rgb(247,113,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.94" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:write_headers:402 (7 samples, 0.01%)</title><rect x="485.2" y="325" width="0.1" height="15.0" fill="rgb(214,89,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.17" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_find_read_pos:1030 (147 samples, 0.22%)</title><rect x="721.8" y="213" width="2.7" height="15.0" fill="rgb(206,105,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="724.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>/weakref.py:__getitem__:137 (80 samples, 0.12%)</title><rect x="1105.0" y="133" width="1.4" height="15.0" fill="rgb(237,66,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1108.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> /tornado/web.py:__init__:194 (23 samples, 0.03%)</title><rect x="963.1" y="181" width="0.4" height="15.0" fill="rgb(223,95,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="966.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/events.py:__init__:167 (213 samples, 0.32%)</title><rect x="347.6" y="341" width="3.8" height="15.0" fill="rgb(240,24,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.63" y="351.5" font-size="12" 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 (8 samples, 0.01%)</title><rect x="387.6" y="373" width="0.1" height="15.0" fill="rgb(243,177,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="390.57" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_has_stream_request_body:1811 (20 samples, 0.03%)</title><rect x="555.9" y="325" width="0.3" height="15.0" fill="rgb(222,96,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.89" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:finish:2195 (82 samples, 0.12%)</title><rect x="540.8" y="277" width="1.4" height="15.0" fill="rgb(206,124,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.78" 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> /tornado/web.py:_convert_header_value:371 (14 samples, 0.02%)</title><rect x="458.8" y="309" width="0.3" height="15.0" fill="rgb(209,16,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.84" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/ioloop.py:add_future:717 (26 samples, 0.04%)</title><rect x="445.1" y="261" width="0.5" height="15.0" fill="rgb(205,103,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="448.12" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:__exit__:249 (9 samples, 0.01%)</title><rect x="589.3" y="341" width="0.2" height="15.0" fill="rgb(206,24,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="592.31" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:run:1178 (6 samples, 0.01%)</title><rect x="1142.8" y="261" width="0.1" height="15.0" fill="rgb(248,120,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.84" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:read_response:152 (1,119 samples, 1.69%)</title><rect x="523.2" y="373" width="19.9" height="15.0" fill="rgb(214,10,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.16" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:__init__:1065 (6 samples, 0.01%)</title><rect x="990.5" y="165" width="0.1" height="15.0" fill="rgb(245,65,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.49" 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> /tornado/gen.py:convert_yielded:1356 (16 samples, 0.02%)</title><rect x="164.5" y="373" width="0.2" height="15.0" fill="rgb(206,225,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.46" y="383.5" font-size="12" 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 (28 samples, 0.04%)</title><rect x="1189.5" y="453" width="0.5" height="15.0" fill="rgb(207,164,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.46" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/re.py:compile:233 (33 samples, 0.05%)</title><rect x="528.2" y="309" width="0.6" height="15.0" fill="rgb(222,103,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.23" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_read_message:185 (381 samples, 0.58%)</title><rect x="422.9" y="373" width="6.8" height="15.0" fill="rgb(208,71,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.95" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:convert_yielded:1356 (12 samples, 0.02%)</title><rect x="1019.1" y="117" width="0.2" height="15.0" fill="rgb(206,223,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1022.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:_add_callback:1320 (7 samples, 0.01%)</title><rect x="53.8" y="437" width="0.1" height="15.0" fill="rgb(246,116,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.82" y="447.5" font-size="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 (6 samples, 0.01%)</title><rect x="52.3" y="453" width="0.1" height="15.0" fill="rgb(211,226,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="55.30" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_try_inline_read:911 (72 samples, 0.11%)</title><rect x="529.8" y="309" width="1.2" height="15.0" fill="rgb(245,29,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.76" y="319.5" font-size="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:_fileobj_lookup:224 (88 samples, 0.13%)</title><rect x="1112.2" y="101" width="1.6" height="15.0" fill="rgb(233,111,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1115.20" 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> /tornado/httputil.py:parse_body_arguments:753 (39 samples, 0.06%)</title><rect x="906.9" y="181" width="0.7" height="15.0" fill="rgb(209,154,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.91" 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_later:544 (355 samples, 0.54%)</title><rect x="266.3" y="373" width="6.3" height="15.0" fill="rgb(230,187,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="269.29" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_convert_header_value:371 (6 samples, 0.01%)</title><rect x="466.4" y="325" width="0.1" height="15.0" fill="rgb(213,165,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.41" y="335.5" font-size="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 (39 samples, 0.06%)</title><rect x="493.7" y="309" width="0.7" height="15.0" fill="rgb(219,179,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.67" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_check_closed:1111 (14 samples, 0.02%)</title><rect x="705.5" y="229" width="0.2" height="15.0" fill="rgb(241,225,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="708.47" 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> /tornado/web.py:finish:1043 (151 samples, 0.23%)</title><rect x="465.4" y="357" width="2.7" height="15.0" fill="rgb(225,13,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="468.41" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_add_error_listener:1121 (9 samples, 0.01%)</title><rect x="449.5" y="325" width="0.2" height="15.0" fill="rgb(248,130,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.50" y="335.5" font-size="12" 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 (87 samples, 0.13%)</title><rect x="62.2" y="469" width="1.6" height="15.0" fill="rgb(221,110,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="65.25" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:format_timestamp:849 (77 samples, 0.12%)</title><rect x="435.1" y="277" width="1.4" height="15.0" fill="rgb(222,192,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.14" 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> /tornado/stack_context.py:wrap:292 (51 samples, 0.08%)</title><rect x="961.0" y="149" width="0.9" height="15.0" fill="rgb(229,43,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="963.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/events.py:__init__:110 (15 samples, 0.02%)</title><rect x="202.4" y="293" width="0.3" height="15.0" fill="rgb(240,226,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.38" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:wrapper:307 (34 samples, 0.05%)</title><rect x="663.6" y="341" width="0.6" height="15.0" fill="rgb(223,76,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="666.58" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./tornado_server.py:work:33 (4,831 samples, 7.31%)</title><rect x="276.8" y="437" width="86.3" height="15.0" fill="rgb(213,68,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.85" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >./tornado_..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:579 (51 samples, 0.08%)</title><rect x="557.2" y="341" width="0.9" height="15.0" fill="rgb(237,30,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.23" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:execute:2216 (84 samples, 0.13%)</title><rect x="963.5" y="197" width="1.5" height="15.0" fill="rgb(251,45,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="966.47" 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>/_weakrefset.py:__contains__:75 (30 samples, 0.05%)</title><rect x="766.5" y="213" width="0.6" height="15.0" fill="rgb(247,28,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="769.54" 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>/email/utils.py:format_datetime:176 (26 samples, 0.04%)</title><rect x="953.8" y="117" width="0.5" height="15.0" fill="rgb(247,133,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="956.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/events.py:__init__:110 (40 samples, 0.06%)</title><rect x="366.0" y="405" width="0.7" height="15.0" fill="rgb(235,120,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="368.97" y="415.5" font-size="12" 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 (35 samples, 0.05%)</title><rect x="699.8" y="229" width="0.6" height="15.0" fill="rgb(233,108,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="702.79" 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> /tornado/httputil.py:__setitem__:223 (23 samples, 0.03%)</title><rect x="937.0" y="117" width="0.4" height="15.0" fill="rgb(205,17,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="939.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> /tornado/iostream.py:set_close_callback:605 (9 samples, 0.01%)</title><rect x="447.7" y="357" width="0.2" height="15.0" fill="rgb(252,212,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="450.73" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:write_headers:392 (276 samples, 0.42%)</title><rect x="475.9" y="325" width="4.9" height="15.0" fill="rgb(238,89,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.91" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_to_buffer:962 (473 samples, 0.72%)</title><rect x="568.8" y="357" width="8.5" height="15.0" fill="rgb(210,49,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="571.83" y="367.5" font-size="12" 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 (9 samples, 0.01%)</title><rect x="156.0" y="309" width="0.2" height="15.0" fill="rgb(230,196,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.99" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httpserver.py:handle_stream:188 (20 samples, 0.03%)</title><rect x="643.1" y="373" width="0.4" height="15.0" fill="rgb(248,174,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.13" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:chain_future:591 (35 samples, 0.05%)</title><rect x="758.3" y="245" width="0.6" height="15.0" fill="rgb(233,131,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="761.29" y="255.5" font-size="12" 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 (90 samples, 0.14%)</title><rect x="51.5" y="469" width="1.6" height="15.0" fill="rgb(211,110,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="54.53" y="479.5" font-size="12" 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 (11 samples, 0.02%)</title><rect x="483.3" y="293" width="0.2" height="15.0" fill="rgb(251,143,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="486.28" y="303.5" font-size="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 (8 samples, 0.01%)</title><rect x="923.4" y="117" width="0.1" height="15.0" fill="rgb(228,183,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.37" 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> /tornado/routing.py:headers_received:244 (195 samples, 0.30%)</title><rect x="426.2" y="357" width="3.5" height="15.0" fill="rgb(210,180,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="429.20" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:wrapper:803 (13 samples, 0.02%)</title><rect x="541.5" y="197" width="0.2" height="15.0" fill="rgb(243,129,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.51" 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:get_event_loop:691 (23 samples, 0.03%)</title><rect x="254.5" y="389" width="0.5" height="15.0" fill="rgb(254,64,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.54" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/platform/asyncio.py:add_handler:82 (10 samples, 0.02%)</title><rect x="1134.8" y="181" width="0.2" height="15.0" fill="rgb(241,15,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.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>/_weakrefset.py:__contains__:72 (6 samples, 0.01%)</title><rect x="923.3" y="117" width="0.1" height="15.0" fill="rgb(234,191,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.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> /tornado/gen.py:wrapper:297 (205 samples, 0.31%)</title><rect x="659.8" y="341" width="3.7" height="15.0" fill="rgb(245,13,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="662.81" y="351.5" font-size="12" 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,832 samples, 2.77%)</title><rect x="63.8" y="469" width="32.7" height="15.0" fill="rgb(244,151,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="66.80" y="479.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> /tornado/http1connection.py:__init__:114 (6 samples, 0.01%)</title><rect x="670.1" y="309" width="0.1" height="15.0" fill="rgb(236,203,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="673.08" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/concurrent.py:is_future:380 (9 samples, 0.01%)</title><rect x="164.8" y="357" width="0.2" height="15.0" fill="rgb(218,0,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.83" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:__exit__:249 (28 samples, 0.04%)</title><rect x="1135.1" y="181" width="0.5" height="15.0" fill="rgb(218,111,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.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>/asyncio/base_events.py:call_soon:575 (14 samples, 0.02%)</title><rect x="499.0" y="357" width="0.2" height="15.0" fill="rgb(238,177,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.98" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse:215 (29 samples, 0.04%)</title><rect x="419.2" y="341" width="0.5" height="15.0" fill="rgb(226,122,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.23" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:__init__:248 (14 samples, 0.02%)</title><rect x="634.5" y="357" width="0.3" height="15.0" fill="rgb(235,193,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.54" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_clear_callbacks:276 (127 samples, 0.19%)</title><rect x="517.5" y="357" width="2.2" height="15.0" fill="rgb(243,202,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.48" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:parse_request_start_line:870 (141 samples, 0.21%)</title><rect x="831.6" y="229" width="2.5" height="15.0" fill="rgb(225,216,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="834.62" 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>/functools.py:wrapper:803 (100 samples, 0.15%)</title><rect x="1138.0" y="229" width="1.8" height="15.0" fill="rgb(246,5,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.04" 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> /tornado/gen.py:callback:878 (18 samples, 0.03%)</title><rect x="378.5" y="437" width="0.3" height="15.0" fill="rgb(205,86,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="381.52" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:set_close_callback:606 (76 samples, 0.12%)</title><rect x="449.4" y="341" width="1.4" height="15.0" fill="rgb(252,82,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.44" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_server_request_loop:732 (324 samples, 0.49%)</title><rect x="514.4" y="389" width="5.8" height="15.0" fill="rgb(213,58,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="517.39" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:request_time:449 (7 samples, 0.01%)</title><rect x="492.8" y="309" width="0.1" height="15.0" fill="rgb(217,55,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.82" y="319.5" font-size="12" 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:_add_reader:267 (392 samples, 0.59%)</title><rect x="1127.3" y="149" width="7.0" height="15.0" fill="rgb(234,105,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1130.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> /tornado/gen.py:multi:770 (61 samples, 0.09%)</title><rect x="160.3" y="421" width="1.1" height="15.0" fill="rgb(228,11,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.26" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:finish:1056 (9 samples, 0.01%)</title><rect x="495.0" y="357" width="0.2" height="15.0" fill="rgb(206,67,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.01" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_maybe_add_error_listener:1128 (28 samples, 0.04%)</title><rect x="542.4" y="277" width="0.5" height="15.0" fill="rgb(212,61,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.35" 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> /tornado/http1connection.py:_clear_callbacks:276 (7 samples, 0.01%)</title><rect x="415.8" y="357" width="0.1" height="15.0" fill="rgb(245,137,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:_execute:1590 (42 samples, 0.06%)</title><rect x="987.8" y="165" width="0.8" height="15.0" fill="rgb(232,109,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="990.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>/asyncio/selector_events.py:_read_from_self:141 (9 samples, 0.01%)</title><rect x="367.5" y="437" width="0.1" height="15.0" fill="rgb(233,215,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="370.47" y="447.5" font-size="12" 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 (11 samples, 0.02%)</title><rect x="444.5" y="181" width="0.2" height="15.0" fill="rgb(232,97,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="447.53" 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> /tornado/gen.py:sleep:1013 (4,358 samples, 6.59%)</title><rect x="285.1" y="421" width="77.8" height="15.0" fill="rgb(251,184,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="288.11" y="431.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> /tornado/http1connection.py:_server_request_loop:735 (1,130 samples, 1.71%)</title><rect x="523.0" y="389" width="20.1" height="15.0" fill="rgb(229,85,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.96" y="399.5" font-size="12" 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 (23 samples, 0.03%)</title><rect x="207.6" y="373" width="0.4" height="15.0" fill="rgb(236,3,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.56" y="383.5" font-size="12" 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 (13 samples, 0.02%)</title><rect x="283.7" y="373" width="0.3" height="15.0" fill="rgb(215,24,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.74" y="383.5" font-size="12" 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 (14 samples, 0.02%)</title><rect x="62.0" y="469" width="0.2" height="15.0" fill="rgb(231,204,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="64.98" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_read_to_buffer_loop:835 (39 samples, 0.06%)</title><rect x="577.9" y="373" width="0.7" height="15.0" fill="rgb(219,195,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.90" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:fileno:1225 (19 samples, 0.03%)</title><rect x="1085.3" y="181" width="0.4" height="15.0" fill="rgb(241,75,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1088.34" 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>/copy.py:deepcopy:138 (9 samples, 0.01%)</title><rect x="861.2" y="197" width="0.2" height="15.0" fill="rgb(253,107,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="864.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> /tornado/http1connection.py:write_headers:413 (75 samples, 0.11%)</title><rect x="485.5" y="325" width="1.4" height="15.0" fill="rgb(248,52,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:_run_read_callback:870 (13 samples, 0.02%)</title><rect x="727.3" y="213" width="0.2" height="15.0" fill="rgb(238,63,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="730.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>/abc.py:__instancecheck__:184 (36 samples, 0.05%)</title><rect x="525.2" y="341" width="0.7" height="15.0" fill="rgb(225,12,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:_on_connection_close:300 (12 samples, 0.02%)</title><rect x="556.3" y="373" width="0.2" height="15.0" fill="rgb(253,178,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.31" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/gen.py:__init__:1069 (7 samples, 0.01%)</title><rect x="796.8" y="277" width="0.1" height="15.0" fill="rgb(224,227,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.82" 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> /tornado/web.py:flush:986 (28 samples, 0.04%)</title><rect x="470.2" y="341" width="0.5" height="15.0" fill="rgb(249,144,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.21" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/iostream.py:read_from_fd:1245 (8 samples, 0.01%)</title><rect x="715.6" y="197" width="0.1" height="15.0" fill="rgb(249,222,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="718.59" 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> /tornado/iostream.py:read_until_regex:353 (179 samples, 0.27%)</title><rect x="697.3" y="261" width="3.2" height="15.0" fill="rgb(241,180,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.31" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/http1connection.py:__init__:100 (7 samples, 0.01%)</title><rect x="514.7" y="373" width="0.1" height="15.0" fill="rgb(211,186,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="517.71" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:finish:2195 (9,407 samples, 14.24%)</title><rect x="908.7" y="213" width="167.9" height="15.0" fill="rgb(216,13,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.66" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhodakov/.pyen..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:dispatch:778 (58 samples, 0.09%)</title><rect x="750.7" y="229" width="1.1" height="15.0" fill="rgb(222,160,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="753.72" 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> /tornado/web.py:_convert_header_value:390 (42 samples, 0.06%)</title><rect x="459.1" y="309" width="0.7" height="15.0" fill="rgb(250,59,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="462.09" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:formatdate:159 (198 samples, 0.30%)</title><rect x="944.2" y="133" width="3.6" height="15.0" fill="rgb(242,74,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="947.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/events.py:_get_running_loop:645 (32 samples, 0.05%)</title><rect x="225.9" y="341" width="0.6" height="15.0" fill="rgb(236,39,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="228.92" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/stack_context.py:wrap:292 (7 samples, 0.01%)</title><rect x="508.6" y="341" width="0.1" height="15.0" fill="rgb(236,87,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.58" y="351.5" font-size="12" 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 (11 samples, 0.02%)</title><rect x="140.1" y="341" width="0.2" height="15.0" fill="rgb(236,78,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="143.08" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/routing.py:finish:256 (87 samples, 0.13%)</title><rect x="540.7" y="293" width="1.5" height="15.0" fill="rgb(207,151,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.69" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/httputil.py:__init__:140 (100 samples, 0.15%)</title><rect x="922.4" y="149" width="1.8" height="15.0" fill="rgb(234,220,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="925.44" 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> /tornado/gen.py:convert_yielded:1358 (13 samples, 0.02%)</title><rect x="802.1" y="229" width="0.2" height="15.0" fill="rgb(228,207,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.05" 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> /tornado/web.py:__init__:183 (40 samples, 0.06%)</title><rect x="431.7" y="309" width="0.7" height="15.0" fill="rgb(215,198,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="434.71" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> /tornado/web.py:__init__:190 (58 samples, 0.09%)</title><rect x="917.8" y="181" width="1.0" height="15.0" fill="rgb(254,117,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="920.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>/copy.py:_deepcopy_dict:238 (9 samples, 0.01%)</title><rect x="862.7" y="181" width="0.1" height="15.0" fill="rgb(221,77,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="865.68" 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 (84 samples, 0.13%)</title><rect x="280.8" y="373" width="1.5" height="15.0" fill="rgb(220,176,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1129 (8 samples, 0.01%)</title><rect x="511.1" y="405" width="0.1" height="15.0" fill="rgb(229,113,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.08" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:297 (61 samples, 0.09%)</title><rect x="523.5" y="357" width="1.1" height="15.0" fill="rgb(226,195,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.48" y="367.5" font-size="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:_fileobj_lookup:231 (7 samples, 0.01%)</title><rect x="1113.8" y="101" width="0.1" height="15.0" fill="rgb(231,185,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1116.77" 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>/tornado/iostream.py:read_until_regex:354 (150 samples, 0.23%)</title><rect x="700.5" y="261" width="2.7" height="15.0" fill="rgb(229,135,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.50" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:with_timeout:976 (104 samples, 0.16%)</title><rect x="255.5" y="421" width="1.9" height="15.0" fill="rgb(239,58,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="258.51" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:_contains_yieldpoint:713 (8 samples, 0.01%)</title><rect x="547.2" y="373" width="0.1" height="15.0" fill="rgb(241,157,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.19" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:current:282 (49 samples, 0.07%)</title><rect x="761.3" y="245" width="0.9" height="15.0" fill="rgb(227,189,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.32" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:__init__:109 (20 samples, 0.03%)</title><rect x="669.6" y="309" width="0.4" height="15.0" fill="rgb(221,128,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.65" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/escape.py:parse_qs_bytes:175 (10 samples, 0.02%)</title><rect x="853.0" y="197" width="0.1" height="15.0" fill="rgb(249,19,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.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>/tornado/concurrent.py:future_add_done_callback:652 (9 samples, 0.01%)</title><rect x="1172.0" y="277" width="0.2" height="15.0" fill="rgb(234,147,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.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/base_events.py:time:526 (7 samples, 0.01%)</title><rect x="272.5" y="357" width="0.1" height="15.0" fill="rgb(229,171,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.51" y="367.5" font-size="12" 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 (19 samples, 0.03%)</title><rect x="545.9" y="341" width="0.3" height="15.0" fill="rgb(206,71,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.87" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__init__:137 (10 samples, 0.02%)</title><rect x="813.6" y="197" width="0.2" height="15.0" fill="rgb(243,89,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.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>/enum.py:__new__:525 (10 samples, 0.02%)</title><rect x="619.8" y="325" width="0.1" height="15.0" fill="rgb(225,225,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.76" y="335.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="515.9" y="357" width="0.1" height="15.0" fill="rgb(223,202,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.89" y="367.5" font-size="12" 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_threadsafe:621 (7 samples, 0.01%)</title><rect x="585.5" y="325" width="0.1" height="15.0" fill="rgb(218,141,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.51" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__init__:356 (11 samples, 0.02%)</title><rect x="842.3" y="213" width="0.2" height="15.0" fill="rgb(245,229,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="845.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>/tornado/gen.py:run:1125 (23 samples, 0.03%)</title><rect x="414.1" y="389" width="0.4" height="15.0" fill="rgb(224,64,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.05" y="399.5" font-size="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:parse_qs:652 (30 samples, 0.05%)</title><rect x="424.8" y="309" width="0.5" height="15.0" fill="rgb(217,193,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.80" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:finish:1034 (237 samples, 0.36%)</title><rect x="459.9" y="357" width="4.2" height="15.0" fill="rgb(212,130,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="462.89" y="367.5" font-size="12" 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 (6 samples, 0.01%)</title><rect x="443.5" y="197" width="0.1" height="15.0" fill="rgb(213,47,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.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>/tornado/ioloop.py:add_future:716 (27 samples, 0.04%)</title><rect x="1061.8" y="133" width="0.5" height="15.0" fill="rgb(236,26,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.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>/tornado/ioloop.py:current:282 (52 samples, 0.08%)</title><rect x="797.4" y="261" width="0.9" height="15.0" fill="rgb(214,219,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.36" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:with_timeout:988 (514 samples, 0.78%)</title><rect x="785.8" y="261" width="9.2" height="15.0" fill="rgb(215,89,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="788.80" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:clear:296 (40 samples, 0.06%)</title><rect x="957.4" y="165" width="0.7" height="15.0" fill="rgb(231,25,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="960.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>/typing.py:__new__:2004 (14 samples, 0.02%)</title><rect x="432.2" y="293" width="0.2" height="15.0" fill="rgb(233,220,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.18" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1356 (22 samples, 0.03%)</title><rect x="1150.4" y="277" width="0.4" height="15.0" fill="rgb(228,228,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.45" 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>/tornado/http1connection.py:_read_message:168 (2,636 samples, 3.99%)</title><rect x="747.9" y="277" width="47.1" height="15.0" fill="rgb(232,170,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="750.91" y="287.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>/asyncio/events.py:get_event_loop:691 (91 samples, 0.14%)</title><rect x="968.1" y="149" width="1.7" height="15.0" fill="rgb(212,19,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="971.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>/tornado/web.py:__init__:190 (6 samples, 0.01%)</title><rect x="432.4" y="309" width="0.2" height="15.0" fill="rgb(250,0,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.45" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:fileno:1225 (6 samples, 0.01%)</title><rect x="569.5" y="325" width="0.1" height="15.0" fill="rgb(206,62,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.51" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__init__:368 (32 samples, 0.05%)</title><rect x="844.8" y="213" width="0.6" height="15.0" fill="rgb(233,92,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="847.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>/tornado/httputil.py:__init__:137 (7 samples, 0.01%)</title><rect x="922.1" y="149" width="0.1" height="15.0" fill="rgb(249,81,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="925.12" 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>/tornado/httputil.py:add:155 (28 samples, 0.04%)</title><rect x="420.7" y="309" width="0.5" height="15.0" fill="rgb(228,18,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="423.73" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1154 (11 samples, 0.02%)</title><rect x="543.4" y="405" width="0.1" height="15.0" fill="rgb(222,186,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.35" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:finish:1042 (33 samples, 0.05%)</title><rect x="464.8" y="357" width="0.6" height="15.0" fill="rgb(235,67,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="467.82" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1129 (23 samples, 0.03%)</title><rect x="414.6" y="389" width="0.4" height="15.0" fill="rgb(209,190,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.59" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/copy.py:_deepcopy_dict:237 (9 samples, 0.01%)</title><rect x="862.5" y="181" width="0.2" height="15.0" fill="rgb(206,31,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="865.51" 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>/tornado/gen.py:_create_future:187 (89 samples, 0.13%)</title><rect x="251.3" y="405" width="1.6" height="15.0" fill="rgb(219,104,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="254.27" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:219 (144 samples, 0.22%)</title><rect x="900.0" y="245" width="2.6" height="15.0" fill="rgb(245,192,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="903.00" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:655 (15 samples, 0.02%)</title><rect x="581.4" y="373" width="0.3" height="15.0" fill="rgb(216,146,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="584.42" y="383.5" font-size="12" 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 (57 samples, 0.09%)</title><rect x="284.0" y="373" width="1.0" height="15.0" fill="rgb(220,131,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.97" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:299 (11 samples, 0.02%)</title><rect x="970.2" y="181" width="0.1" height="15.0" fill="rgb(209,158,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.15" 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>/tornado/iostream.py:set_nodelay:1443 (6 samples, 0.01%)</title><rect x="491.3" y="293" width="0.1" height="15.0" fill="rgb(251,42,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.34" y="303.5" font-size="12" 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 (14 samples, 0.02%)</title><rect x="586.8" y="293" width="0.2" height="15.0" fill="rgb(215,106,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.80" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:_execute:1572 (7 samples, 0.01%)</title><rect x="986.1" y="165" width="0.1" height="15.0" fill="rgb(249,157,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="989.06" 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>/tornado/iostream.py:__init__:275 (8 samples, 0.01%)</title><rect x="641.7" y="357" width="0.2" height="15.0" fill="rgb(246,169,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="644.72" y="367.5" font-size="12" 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 (10 samples, 0.02%)</title><rect x="1026.1" y="85" width="0.2" height="15.0" fill="rgb(223,164,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1029.10" 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>/tornado/gen.py:__init__:1078 (22 samples, 0.03%)</title><rect x="539.2" y="341" width="0.4" height="15.0" fill="rgb(222,164,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_add_error_listener:1121 (6 samples, 0.01%)</title><rect x="518.2" y="325" width="0.2" height="15.0" fill="rgb(252,174,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.24" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_clear_callbacks:276 (10 samples, 0.02%)</title><rect x="491.1" y="293" width="0.2" height="15.0" fill="rgb(215,113,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.12" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:finish:479 (15 samples, 0.02%)</title><rect x="488.2" y="341" width="0.3" height="15.0" fill="rgb(230,197,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.19" y="351.5" font-size="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 (86 samples, 0.13%)</title><rect x="765.5" y="229" width="1.6" height="15.0" fill="rgb(231,121,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="768.54" 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>/tornado/httputil.py:__init__:146 (18 samples, 0.03%)</title><rect x="418.9" y="325" width="0.3" height="15.0" fill="rgb(235,37,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="421.91" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:call_at:143 (19 samples, 0.03%)</title><rect x="768.7" y="229" width="0.3" height="15.0" fill="rgb(206,76,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="771.68" 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>/tornado/web.py:log_request:2161 (7 samples, 0.01%)</title><rect x="493.3" y="325" width="0.2" height="15.0" fill="rgb(222,38,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.34" y="335.5" font-size="12" 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:_ensure_fd_no_transport:253 (6 samples, 0.01%)</title><rect x="571.6" y="293" width="0.1" height="15.0" fill="rgb(205,121,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.60" y="303.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="753.8" y="229" width="0.1" height="15.0" fill="rgb(223,224,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="756.75" 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>/tornado/httputil.py:__setitem__:223 (10 samples, 0.02%)</title><rect x="458.2" y="309" width="0.1" height="15.0" fill="rgb(246,175,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.16" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:chain_future:603 (108 samples, 0.16%)</title><rect x="759.1" y="245" width="1.9" height="15.0" fill="rgb(215,24,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.09" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:_run_callback:775 (10 samples, 0.02%)</title><rect x="562.1" y="437" width="0.2" height="15.0" fill="rgb(234,57,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.08" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:__init__:1080 (184 samples, 0.28%)</title><rect x="539.6" y="341" width="3.3" height="15.0" fill="rgb(239,8,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.64" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:__init__:695 (7 samples, 0.01%)</title><rect x="655.0" y="357" width="0.2" height="15.0" fill="rgb(252,206,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="658.04" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/escape.py:utf8:193 (26 samples, 0.04%)</title><rect x="460.7" y="325" width="0.4" height="15.0" fill="rgb(252,176,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.68" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:<lambda>:719 (26 samples, 0.04%)</title><rect x="1188.6" y="309" width="0.4" height="15.0" fill="rgb(227,41,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.55" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:with_timeout:963 (206 samples, 0.31%)</title><rect x="749.3" y="261" width="3.7" height="15.0" fill="rgb(206,55,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="752.32" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:__init__:259 (6 samples, 0.01%)</title><rect x="637.0" y="357" width="0.2" height="15.0" fill="rgb(226,104,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="640.04" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1165 (13 samples, 0.02%)</title><rect x="496.7" y="389" width="0.2" height="15.0" fill="rgb(216,46,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.69" y="399.5" font-size="12" 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 (12 samples, 0.02%)</title><rect x="779.0" y="181" width="0.2" height="15.0" fill="rgb(214,228,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.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>/tornado/gen.py:run:1119 (6 samples, 0.01%)</title><rect x="806.3" y="261" width="0.1" height="15.0" fill="rgb(230,153,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.32" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:296 (12 samples, 0.02%)</title><rect x="445.4" y="245" width="0.2" height="15.0" fill="rgb(247,5,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="448.37" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:_handle_events:122 (35,089 samples, 53.10%)</title><rect x="562.9" y="437" width="626.6" height="15.0" fill="rgb(226,156,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.90" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/tornado/platform/asyn..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:add_callback:154 (24 samples, 0.04%)</title><rect x="1188.6" y="293" width="0.4" height="15.0" fill="rgb(252,200,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.59" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:244 (9 samples, 0.01%)</title><rect x="447.5" y="373" width="0.2" height="15.0" fill="rgb(211,2,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="450.53" y="383.5" font-size="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:parse_qsl:684 (89 samples, 0.13%)</title><rect x="854.5" y="165" width="1.6" height="15.0" fill="rgb(225,166,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.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>/tornado/http1connection.py:__init__:124 (153 samples, 0.23%)</title><rect x="517.0" y="373" width="2.7" height="15.0" fill="rgb(209,105,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.01" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:future_add_done_callback:649 (11 samples, 0.02%)</title><rect x="276.5" y="405" width="0.2" height="15.0" fill="rgb(227,123,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.47" y="415.5" font-size="12" 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 (25 samples, 0.04%)</title><rect x="411.2" y="341" width="0.5" height="15.0" fill="rgb(218,138,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="414.23" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_find_read_pos:1027 (6 samples, 0.01%)</title><rect x="704.7" y="229" width="0.1" height="15.0" fill="rgb(224,212,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.74" 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>/tornado/http1connection.py:_server_request_loop:735 (25,522 samples, 38.62%)</title><rect x="688.1" y="325" width="455.7" height="15.0" fill="rgb(236,64,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="691.11" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/site-packag..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/base_events.py:call_soon:579 (215 samples, 0.33%)</title><rect x="199.2" y="325" width="3.8" height="15.0" fill="rgb(231,219,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="202.19" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/weakref.py:__getitem__:394 (12 samples, 0.02%)</title><rect x="1150.2" y="261" width="0.2" height="15.0" fill="rgb(213,82,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.22" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:flush:994 (863 samples, 1.31%)</title><rect x="471.6" y="341" width="15.4" height="15.0" fill="rgb(238,52,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.60" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:with_timeout:988 (29 samples, 0.04%)</title><rect x="276.2" y="421" width="0.5" height="15.0" fill="rgb(222,215,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.18" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:__init__:2176 (108 samples, 0.16%)</title><rect x="895.2" y="101" width="1.9" height="15.0" fill="rgb(215,7,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="898.21" 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>/tornado/web.py:get_target_delegate:1884 (520 samples, 0.79%)</title><rect x="887.9" y="133" width="9.2" height="15.0" fill="rgb(247,163,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="890.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>/tornado/stack_context.py:wrap:294 (7 samples, 0.01%)</title><rect x="588.5" y="325" width="0.1" height="15.0" fill="rgb(246,118,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.47" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:181 (15 samples, 0.02%)</title><rect x="835.7" y="245" width="0.2" height="15.0" fill="rgb(249,151,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="838.66" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__getitem__:229 (8 samples, 0.01%)</title><rect x="474.2" y="293" width="0.2" height="15.0" fill="rgb(211,201,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.21" y="303.5" font-size="12" 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_to_self:159 (18 samples, 0.03%)</title><rect x="507.7" y="325" width="0.3" height="15.0" fill="rgb(248,224,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.69" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:<lambda>:719 (769 samples, 1.16%)</title><rect x="381.1" y="437" width="13.7" height="15.0" fill="rgb(208,200,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.09" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:get:660 (15 samples, 0.02%)</title><rect x="837.0" y="213" width="0.3" height="15.0" fill="rgb(225,143,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="840.03" 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>/tornado/httputil.py:parse:214 (27 samples, 0.04%)</title><rect x="418.7" y="341" width="0.5" height="15.0" fill="rgb(247,42,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="421.75" y="351.5" font-size="12" 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 (23 samples, 0.03%)</title><rect x="224.8" y="357" width="0.4" height="15.0" fill="rgb(210,23,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="227.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/copy.py:deepcopy:142 (11 samples, 0.02%)</title><rect x="861.7" y="197" width="0.2" height="15.0" fill="rgb(240,38,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="864.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>/tornado/http1connection.py:_read_message:168 (6 samples, 0.01%)</title><rect x="415.6" y="373" width="0.1" height="15.0" fill="rgb(224,196,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.61" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:add_handler:79 (13 samples, 0.02%)</title><rect x="1101.3" y="181" width="0.3" height="15.0" fill="rgb(217,56,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1104.34" 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>/tornado/iostream.py:_read_to_buffer:945 (154 samples, 0.23%)</title><rect x="713.0" y="213" width="2.7" height="15.0" fill="rgb(253,173,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="715.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>/tornado/http1connection.py:_server_request_loop:733 (189 samples, 0.29%)</title><rect x="684.7" y="325" width="3.4" height="15.0" fill="rgb(251,206,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.74" y="335.5" font-size="12" 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 (69 samples, 0.10%)</title><rect x="167.6" y="357" width="1.2" height="15.0" fill="rgb(228,154,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="170.60" y="367.5" font-size="12" 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 (12 samples, 0.02%)</title><rect x="753.9" y="213" width="0.2" height="15.0" fill="rgb(221,218,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="756.93" 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__:107 (8 samples, 0.01%)</title><rect x="365.7" y="405" width="0.1" height="15.0" fill="rgb(239,169,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="368.70" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:handle_yield:1235 (70 samples, 0.11%)</title><rect x="509.1" y="373" width="1.3" height="15.0" fill="rgb(217,100,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="512.14" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:get_target_delegate:1883 (8 samples, 0.01%)</title><rect x="428.8" y="261" width="0.1" height="15.0" fill="rgb(212,17,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="431.80" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:set_close_callback:605 (9 samples, 0.01%)</title><rect x="491.1" y="277" width="0.2" height="15.0" fill="rgb(227,19,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.14" 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>/tornado/gen.py:handle_yield:1186 (22 samples, 0.03%)</title><rect x="1148.7" y="309" width="0.4" height="15.0" fill="rgb(209,211,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1151.73" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_find_read_pos:1032 (31 samples, 0.05%)</title><rect x="724.5" y="213" width="0.5" height="15.0" fill="rgb(210,117,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.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__:184 (100 samples, 0.15%)</title><rect x="665.5" y="325" width="1.8" height="15.0" fill="rgb(242,100,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.51" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__init__:146 (50 samples, 0.08%)</title><rect x="433.9" y="277" width="0.9" height="15.0" fill="rgb(252,39,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.93" 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/events.py:__init__:110 (9 samples, 0.01%)</title><rect x="557.8" y="309" width="0.2" height="15.0" fill="rgb(249,35,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.80" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:<genexpr>:182 (9 samples, 0.01%)</title><rect x="917.5" y="165" width="0.2" height="15.0" fill="rgb(244,14,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="920.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>/tornado/http1connection.py:_finish_request:514 (116 samples, 0.18%)</title><rect x="488.6" y="325" width="2.1" height="15.0" fill="rgb(218,109,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.60" y="335.5" font-size="12" 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 (48 samples, 0.07%)</title><rect x="388.0" y="373" width="0.8" height="15.0" fill="rgb(208,82,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="390.96" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:current:282 (6 samples, 0.01%)</title><rect x="441.2" y="277" width="0.1" height="15.0" fill="rgb(225,91,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.23" 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>/tornado/http1connection.py:_read_message:234 (7 samples, 0.01%)</title><rect x="902.6" y="245" width="0.1" height="15.0" fill="rgb(248,35,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="905.60" y="255.5" font-size="12" 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 (10 samples, 0.02%)</title><rect x="575.5" y="277" width="0.2" height="15.0" fill="rgb(237,28,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.51" 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/tasks.py:ensure_future:519 (1,987 samples, 3.01%)</title><rect x="1024.5" y="101" width="35.5" height="15.0" fill="rgb(221,154,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1027.49" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:update:839 (52 samples, 0.08%)</title><rect x="935.0" y="133" width="1.0" height="15.0" fill="rgb(211,184,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="938.03" 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>/tornado/gen.py:wrapper:307 (11 samples, 0.02%)</title><rect x="524.6" y="357" width="0.2" height="15.0" fill="rgb(234,122,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.60" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_read_to_buffer:970 (15 samples, 0.02%)</title><rect x="577.5" y="357" width="0.3" height="15.0" fill="rgb(231,204,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.55" y="367.5" font-size="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:register:237 (114 samples, 0.17%)</title><rect x="1129.6" y="117" width="2.0" height="15.0" fill="rgb(254,19,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.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>/functools.py:dispatch:778 (41 samples, 0.06%)</title><rect x="1138.5" y="213" width="0.7" height="15.0" fill="rgb(224,88,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.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>/functools.py:dispatch:778 (37 samples, 0.06%)</title><rect x="548.2" y="357" width="0.7" height="15.0" fill="rgb(206,208,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.19" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:time:591 (17 samples, 0.03%)</title><rect x="296.3" y="373" width="0.3" height="15.0" fill="rgb(211,160,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="299.29" y="383.5" font-size="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:register:405 (6 samples, 0.01%)</title><rect x="542.7" y="197" width="0.1" height="15.0" fill="rgb(234,223,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.71" 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>/tornado/iostream.py:_add_io_state:1156 (10 samples, 0.02%)</title><rect x="731.7" y="229" width="0.2" height="15.0" fill="rgb(235,86,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.68" 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>/tornado/gen.py:wrapper:325 (11 samples, 0.02%)</title><rect x="695.9" y="293" width="0.2" height="15.0" fill="rgb(239,79,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="698.92" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:time:591 (11 samples, 0.02%)</title><rect x="133.9" y="373" width="0.2" height="15.0" fill="rgb(237,33,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.89" y="383.5" font-size="12" 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 (31 samples, 0.05%)</title><rect x="408.9" y="373" width="0.5" height="15.0" fill="rgb(250,193,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="411.89" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:641 (10 samples, 0.02%)</title><rect x="449.9" y="309" width="0.2" height="15.0" fill="rgb(238,219,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.91" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_body:579 (6 samples, 0.01%)</title><rect x="430.1" y="357" width="0.1" height="15.0" fill="rgb(217,30,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.12" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:call_at:145 (1,325 samples, 2.01%)</title><rect x="135.6" y="373" width="23.6" height="15.0" fill="rgb(231,92,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="138.58" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:flush:972 (6 samples, 0.01%)</title><rect x="469.7" y="341" width="0.1" height="15.0" fill="rgb(241,84,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.73" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:add_handler:80 (647 samples, 0.98%)</title><rect x="733.6" y="213" width="11.6" height="15.0" fill="rgb(215,146,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.61" 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>/tornado/concurrent.py:future_add_done_callback:650 (26 samples, 0.04%)</title><rect x="1188.6" y="325" width="0.4" height="15.0" fill="rgb(227,39,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/escape.py:to_unicode:211 (19 samples, 0.03%)</title><rect x="810.2" y="213" width="0.3" height="15.0" fill="rgb(226,5,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="813.16" 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_event_loop:691 (6 samples, 0.01%)</title><rect x="443.3" y="213" width="0.1" height="15.0" fill="rgb(212,24,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.32" 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>/tornado/gen.py:run:1141 (15 samples, 0.02%)</title><rect x="806.8" y="261" width="0.2" height="15.0" fill="rgb(224,25,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.77" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:_format_timetuple_and_zone:136 (93 samples, 0.14%)</title><rect x="955.7" y="101" width="1.7" height="15.0" fill="rgb(229,219,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="958.71" 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>/tornado/http1connection.py:<genexpr>:392 (242 samples, 0.37%)</title><rect x="476.5" y="309" width="4.3" height="15.0" fill="rgb(216,173,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="479.51" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_read_to_buffer_loop:785 (6 samples, 0.01%)</title><rect x="706.1" y="229" width="0.1" height="15.0" fill="rgb(217,21,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.09" 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>/tornado/iostream.py:_read_to_buffer_loop:815 (22 samples, 0.03%)</title><rect x="531.1" y="293" width="0.4" height="15.0" fill="rgb(220,80,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="534.08" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/re.py:compile:233 (111 samples, 0.17%)</title><rect x="701.2" y="245" width="2.0" height="15.0" fill="rgb(231,186,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.20" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:multi_future:869 (197 samples, 0.30%)</title><rect x="203.3" y="405" width="3.5" height="15.0" fill="rgb(240,178,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.29" y="415.5" font-size="12" 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 (124 samples, 0.19%)</title><rect x="1056.8" y="53" width="2.2" height="15.0" fill="rgb(223,173,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1059.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>/tornado/iostream.py:__init__:131 (9 samples, 0.01%)</title><rect x="639.8" y="341" width="0.2" height="15.0" fill="rgb(229,164,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="642.81" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:__init__:2172 (46 samples, 0.07%)</title><rect x="893.8" y="101" width="0.8" height="15.0" fill="rgb(219,160,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="896.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>/tornado/iostream.py:_read_to_buffer_loop:839 (24 samples, 0.04%)</title><rect x="578.6" y="373" width="0.4" height="15.0" fill="rgb(254,85,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="581.60" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:future_set_result_unless_cancelled:618 (8 samples, 0.01%)</title><rect x="543.9" y="389" width="0.1" height="15.0" fill="rgb(240,78,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.90" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:add_timeout:619 (6 samples, 0.01%)</title><rect x="532.6" y="309" width="0.1" height="15.0" fill="rgb(212,57,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.62" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/inspect.py:isawaitable:224 (42 samples, 0.06%)</title><rect x="1020.0" y="101" width="0.8" height="15.0" fill="rgb(206,181,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1023.01" 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>/abc.py:__instancecheck__:184 (52 samples, 0.08%)</title><rect x="942.0" y="133" width="0.9" height="15.0" fill="rgb(221,77,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.01" 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>/functools.py:dispatch:778 (60 samples, 0.09%)</title><rect x="1017.8" y="117" width="1.1" height="15.0" fill="rgb(234,59,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1020.79" 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>/tornado/http1connection.py:_read_message:238 (9,708 samples, 14.69%)</title><rect x="903.3" y="245" width="173.3" height="15.0" fill="rgb(218,88,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="906.28" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhodakov/.pyenv..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:get:662 (8 samples, 0.01%)</title><rect x="837.4" y="213" width="0.1" height="15.0" fill="rgb(238,172,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="840.39" 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>/tornado/http1connection.py:write_headers:354 (73 samples, 0.11%)</title><rect x="471.9" y="325" width="1.3" height="15.0" fill="rgb(234,20,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.93" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_read_from_buffer:993 (193 samples, 0.29%)</title><rect x="726.9" y="229" width="3.5" height="15.0" fill="rgb(222,87,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="729.95" 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>/tornado/web.py:__init__:3158 (9 samples, 0.01%)</title><rect x="918.7" y="165" width="0.1" height="15.0" fill="rgb(228,69,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.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>/asyncio/base_events.py:_call_soon:596 (328 samples, 0.50%)</title><rect x="245.1" y="325" width="5.8" height="15.0" fill="rgb(245,51,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="248.08" y="335.5" font-size="12" 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 (26 samples, 0.04%)</title><rect x="699.9" y="213" width="0.5" height="15.0" fill="rgb(211,200,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="702.93" 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>/tornado/httputil.py:parse_line:186 (8 samples, 0.01%)</title><rect x="419.8" y="325" width="0.2" height="15.0" fill="rgb(232,71,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.82" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:read_from_fd:1238 (14 samples, 0.02%)</title><rect x="568.5" y="341" width="0.2" height="15.0" fill="rgb(228,199,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="571.47" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:check_etag_header:1523 (129 samples, 0.20%)</title><rect x="461.7" y="341" width="2.3" height="15.0" fill="rgb(219,213,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="464.69" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_add_error_listener:1125 (54 samples, 0.08%)</title><rect x="489.7" y="277" width="1.0" height="15.0" fill="rgb(218,3,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.69" 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>/tornado/routing.py:match:529 (21 samples, 0.03%)</title><rect x="884.7" y="133" width="0.4" height="15.0" fill="rgb(228,93,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="887.75" 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>/tornado/gen.py:handle_yield:1186 (20 samples, 0.03%)</title><rect x="503.7" y="373" width="0.4" height="15.0" fill="rgb(252,217,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.73" y="383.5" font-size="12" 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:add_reader:337 (591 samples, 0.89%)</title><rect x="734.6" y="197" width="10.6" height="15.0" fill="rgb(219,88,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="737.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>/selectors.py:_fileobj_to_fd:32 (52 samples, 0.08%)</title><rect x="1112.6" y="85" width="0.9" height="15.0" fill="rgb(251,39,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1115.59" 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 (26 samples, 0.04%)</title><rect x="923.0" y="133" width="0.5" height="15.0" fill="rgb(244,63,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.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/events.py:get_event_loop:691 (21 samples, 0.03%)</title><rect x="437.8" y="277" width="0.4" height="15.0" fill="rgb(251,3,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.84" 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>/tornado/gen.py:handle_yield:1221 (102 samples, 0.15%)</title><rect x="1149.2" y="309" width="1.8" height="15.0" fill="rgb(244,123,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.18" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:_request_summary:1628 (25 samples, 0.04%)</title><rect x="494.5" y="309" width="0.4" height="15.0" fill="rgb(250,9,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.50" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:__contains__:666 (20 samples, 0.03%)</title><rect x="464.4" y="341" width="0.4" height="15.0" fill="rgb(216,176,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="467.43" y="351.5" font-size="12" 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 (26 samples, 0.04%)</title><rect x="527.4" y="293" width="0.4" height="15.0" fill="rgb(243,124,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.37" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:with_timeout:983 (6 samples, 0.01%)</title><rect x="785.6" y="261" width="0.2" height="15.0" fill="rgb(206,12,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="788.64" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:<lambda>:988 (552 samples, 0.84%)</title><rect x="368.7" y="437" width="9.8" height="15.0" fill="rgb(220,149,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_check_closed:1112 (62 samples, 0.09%)</title><rect x="529.9" y="293" width="1.1" height="15.0" fill="rgb(224,125,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.94" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:172 (1,309 samples, 1.98%)</title><rect x="807.4" y="245" width="23.4" height="15.0" fill="rgb(238,58,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="810.45" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:326 (655 samples, 0.99%)</title><rect x="526.0" y="357" width="11.7" height="15.0" fill="rgb(233,222,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.05" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:with_timeout:981 (32 samples, 0.05%)</title><rect x="763.0" y="261" width="0.5" height="15.0" fill="rgb(240,22,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="765.97" y="271.5" font-size="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 (18 samples, 0.03%)</title><rect x="855.8" y="149" width="0.3" height="15.0" fill="rgb(215,228,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="858.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>/asyncio/selector_events.py:_process_events:528 (29 samples, 0.04%)</title><rect x="53.7" y="453" width="0.5" height="15.0" fill="rgb(212,223,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.69" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:165 (20 samples, 0.03%)</title><rect x="745.7" y="277" width="0.3" height="15.0" fill="rgb(205,130,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="748.68" 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>/tornado/gen.py:convert_yielded:1360 (22 samples, 0.03%)</title><rect x="165.0" y="373" width="0.4" height="15.0" fill="rgb(250,60,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.99" y="383.5" font-size="12" 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 (10 samples, 0.02%)</title><rect x="199.0" y="325" width="0.2" height="15.0" fill="rgb(231,226,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.97" y="335.5" font-size="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 (249 samples, 0.38%)</title><rect x="1051.8" y="69" width="4.4" height="15.0" fill="rgb(209,47,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1054.77" 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>/tornado/stack_context.py:wrap:303 (7 samples, 0.01%)</title><rect x="1100.8" y="165" width="0.1" height="15.0" fill="rgb(205,174,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1103.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/events.py:cancel:211 (6 samples, 0.01%)</title><rect x="787.5" y="197" width="0.1" height="15.0" fill="rgb(215,9,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="790.50" 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>/tornado/concurrent.py:is_future:380 (18 samples, 0.03%)</title><rect x="1061.9" y="117" width="0.4" height="15.0" fill="rgb(232,106,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.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>/tornado/iostream.py:wrapper:750 (10 samples, 0.02%)</title><rect x="553.1" y="405" width="0.1" height="15.0" fill="rgb(247,206,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.06" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:wrapper:803 (81 samples, 0.12%)</title><rect x="1149.6" y="293" width="1.4" height="15.0" fill="rgb(254,34,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.56" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:643 (12 samples, 0.02%)</title><rect x="580.3" y="373" width="0.2" height="15.0" fill="rgb(250,123,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="583.33" y="383.5" font-size="12" 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 (12 samples, 0.02%)</title><rect x="106.5" y="453" width="0.2" height="15.0" fill="rgb(222,160,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="109.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_read_to_buffer:965 (223 samples, 0.34%)</title><rect x="716.1" y="213" width="4.0" height="15.0" fill="rgb(240,224,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.08" 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>/tornado/gen.py:wrapper:327 (6 samples, 0.01%)</title><rect x="988.7" y="181" width="0.1" height="15.0" fill="rgb(207,117,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="991.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>/abc.py:__instancecheck__:183 (10 samples, 0.02%)</title><rect x="665.3" y="325" width="0.2" height="15.0" fill="rgb(205,139,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.33" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:future_add_done_callback:652 (15 samples, 0.02%)</title><rect x="215.5" y="389" width="0.3" height="15.0" fill="rgb(206,179,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="218.49" y="399.5" font-size="12" 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 (148 samples, 0.22%)</title><rect x="499.3" y="357" width="2.6" height="15.0" fill="rgb(232,41,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.30" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/copy.py:deepcopy:141 (19 samples, 0.03%)</title><rect x="861.4" y="197" width="0.3" height="15.0" fill="rgb(212,151,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="864.39" 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>/tornado/gen.py:wrapper:325 (12 samples, 0.02%)</title><rect x="667.3" y="341" width="0.2" height="15.0" fill="rgb(222,38,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="670.33" y="351.5" font-size="12" 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:_add_reader:267 (44 samples, 0.07%)</title><rect x="744.4" y="181" width="0.8" height="15.0" fill="rgb(209,214,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.38" 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>/tornado/http1connection.py:write_headers:400 (87 samples, 0.13%)</title><rect x="482.7" y="325" width="1.6" height="15.0" fill="rgb(230,179,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.75" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:326 (7 samples, 0.01%)</title><rect x="541.3" y="245" width="0.1" height="15.0" fill="rgb(241,39,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.30" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_set_read_callback:860 (6 samples, 0.01%)</title><rect x="526.9" y="309" width="0.1" height="15.0" fill="rgb(237,222,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.92" y="319.5" font-size="12" 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 (64 samples, 0.10%)</title><rect x="545.1" y="357" width="1.2" height="15.0" fill="rgb(239,206,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.12" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:__init__:1080 (18,886 samples, 28.58%)</title><rect x="805.9" y="277" width="337.2" height="15.0" fill="rgb(209,173,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="808.89" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhodakov/.pyenv/versions/avio/lib/pyth..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/re.py:_compile:289 (21 samples, 0.03%)</title><rect x="849.6" y="165" width="0.4" height="15.0" fill="rgb(227,139,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="852.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>/tornado/http1connection.py:__init__:103 (6 samples, 0.01%)</title><rect x="669.0" y="309" width="0.1" height="15.0" fill="rgb(241,69,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.99" y="319.5" font-size="12" 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 (60,638 samples, 91.76%)</title><rect x="106.7" y="453" width="1082.8" height="15.0" fill="rgb(233,111,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="109.69" y="463.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>/asyncio/base_events.py:call_soon:579 (7 samples, 0.01%)</title><rect x="368.1" y="421" width="0.1" height="15.0" fill="rgb(252,93,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.07" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_run_read_callback:878 (13 samples, 0.02%)</title><rect x="579.2" y="357" width="0.3" height="15.0" fill="rgb(230,134,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.22" y="367.5" font-size="12" 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 (63,828 samples, 96.59%)</title><rect x="50.3" y="485" width="1139.7" height="15.0" fill="rgb(243,182,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.27" y="495.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>/tornado/gen.py:run:1181 (11 samples, 0.02%)</title><rect x="510.4" y="389" width="0.2" height="15.0" fill="rgb(208,119,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="513.41" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_add_error_listener:1121 (7 samples, 0.01%)</title><rect x="683.1" y="261" width="0.1" height="15.0" fill="rgb(220,79,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="686.06" y="271.5" font-size="12" 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 (58 samples, 0.09%)</title><rect x="1022.8" y="101" width="1.0" height="15.0" fill="rgb(223,209,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1025.81" 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>/tornado/iostream.py:write:575 (9 samples, 0.01%)</title><rect x="485.6" y="309" width="0.2" height="15.0" fill="rgb(228,97,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.64" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:263 (8 samples, 0.01%)</title><rect x="415.8" y="373" width="0.1" height="15.0" fill="rgb(227,195,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.77" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:future_add_done_callback:650 (30 samples, 0.05%)</title><rect x="491.1" y="325" width="0.5" height="15.0" fill="rgb(224,109,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.09" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:_execute:1579 (13 samples, 0.02%)</title><rect x="440.4" y="293" width="0.2" height="15.0" fill="rgb(212,52,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.36" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:292 (10 samples, 0.02%)</title><rect x="157.7" y="357" width="0.2" height="15.0" fill="rgb(254,131,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.74" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_find_read_pos:1002 (7 samples, 0.01%)</title><rect x="529.2" y="293" width="0.1" height="15.0" fill="rgb(231,187,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.21" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/routing.py:finish:256 (9,650 samples, 14.60%)</title><rect x="904.3" y="229" width="172.3" height="15.0" fill="rgb(246,100,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="907.32" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhodakov/.pyenv..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_add_io_state:1161 (25 samples, 0.04%)</title><rect x="542.4" y="261" width="0.5" height="15.0" fill="rgb(206,68,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.40" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1358 (11 samples, 0.02%)</title><rect x="549.2" y="357" width="0.2" height="15.0" fill="rgb(247,47,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.24" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:347 (26 samples, 0.04%)</title><rect x="1075.8" y="181" width="0.5" height="15.0" fill="rgb(247,114,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.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>/tornado/http1connection.py:write_headers:366 (31 samples, 0.05%)</title><rect x="473.8" y="325" width="0.6" height="15.0" fill="rgb(235,117,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.82" y="335.5" font-size="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:_fileobj_lookup:224 (13 samples, 0.02%)</title><rect x="1130.5" y="101" width="0.3" height="15.0" fill="rgb(247,94,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1133.52" 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 (46 samples, 0.07%)</title><rect x="662.2" y="309" width="0.8" height="15.0" fill="rgb(253,171,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="665.17" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:future_add_done_callback:650 (90 samples, 0.14%)</title><rect x="759.4" y="229" width="1.6" height="15.0" fill="rgb(232,85,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.36" 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>/tornado/gen.py:_create_future:187 (106 samples, 0.16%)</title><rect x="753.1" y="245" width="1.9" height="15.0" fill="rgb(218,36,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="756.09" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_read_to_buffer_loop:809 (7 samples, 0.01%)</title><rect x="565.7" y="373" width="0.1" height="15.0" fill="rgb(240,202,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.69" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:303 (7 samples, 0.01%)</title><rect x="1074.9" y="117" width="0.1" height="15.0" fill="rgb(220,32,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1077.90" 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>/tornado/stack_context.py:wrap:292 (11 samples, 0.02%)</title><rect x="1141.6" y="213" width="0.2" height="15.0" fill="rgb(207,199,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.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>/tornado/iostream.py:_maybe_run_close_callback:647 (6 samples, 0.01%)</title><rect x="519.3" y="309" width="0.1" height="15.0" fill="rgb(228,72,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.30" y="319.5" font-size="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 (8 samples, 0.01%)</title><rect x="439.5" y="293" width="0.2" height="15.0" fill="rgb(239,43,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.53" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:time:591 (6 samples, 0.01%)</title><rect x="770.6" y="213" width="0.2" height="15.0" fill="rgb(219,15,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="773.64" 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>/tornado/iostream.py:_maybe_run_close_callback:641 (13 samples, 0.02%)</title><rect x="577.0" y="325" width="0.3" height="15.0" fill="rgb(238,79,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.03" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:close:632 (395 samples, 0.60%)</title><rect x="569.1" y="341" width="7.1" height="15.0" fill="rgb(223,8,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.14" y="351.5" font-size="12" 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 (35 samples, 0.05%)</title><rect x="224.6" y="373" width="0.6" height="15.0" fill="rgb(225,217,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="227.62" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__setitem__:225 (10 samples, 0.02%)</title><rect x="466.2" y="325" width="0.2" height="15.0" fill="rgb(233,213,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.23" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:flush:993 (6 samples, 0.01%)</title><rect x="471.5" y="341" width="0.1" height="15.0" fill="rgb(223,67,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.50" y="351.5" font-size="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 (23 samples, 0.03%)</title><rect x="471.1" y="325" width="0.4" height="15.0" fill="rgb(248,133,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.09" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:write_headers:390 (17 samples, 0.03%)</title><rect x="475.6" y="325" width="0.3" height="15.0" fill="rgb(230,106,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.59" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:641 (10 samples, 0.02%)</title><rect x="489.7" y="261" width="0.2" height="15.0" fill="rgb(210,191,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.73" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:dispatch:778 (34 samples, 0.05%)</title><rect x="222.7" y="389" width="0.6" height="15.0" fill="rgb(253,221,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="225.67" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:read_until_regex:357 (2,359 samples, 3.57%)</title><rect x="703.2" y="261" width="42.1" height="15.0" fill="rgb(240,213,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="706.20" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:add_handler:77 (72 samples, 0.11%)</title><rect x="732.2" y="213" width="1.3" height="15.0" fill="rgb(233,89,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="735.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>/tornado/stack_context.py:wrap:296 (25 samples, 0.04%)</title><rect x="732.8" y="197" width="0.5" height="15.0" fill="rgb(240,164,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="735.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>/tornado/gen.py:wrapper:325 (9 samples, 0.01%)</title><rect x="525.9" y="357" width="0.1" height="15.0" fill="rgb(208,163,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.89" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:160 (314 samples, 0.48%)</title><rect x="526.4" y="341" width="5.6" height="15.0" fill="rgb(229,59,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.39" y="351.5" font-size="12" 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:_add_reader:262 (15 samples, 0.02%)</title><rect x="734.9" y="181" width="0.2" height="15.0" fill="rgb(226,165,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="737.86" 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>/tornado/gen.py:__init__:1071 (21 samples, 0.03%)</title><rect x="441.0" y="293" width="0.4" height="15.0" fill="rgb(222,65,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.02" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:finish:1057 (40 samples, 0.06%)</title><rect x="495.2" y="357" width="0.7" height="15.0" fill="rgb(252,7,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.17" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_read_to_buffer_loop:818 (11 samples, 0.02%)</title><rect x="720.7" y="229" width="0.2" height="15.0" fill="rgb(226,209,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="723.74" 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>/selectors.py:__getitem__:73 (491 samples, 0.74%)</title><rect x="1114.6" y="117" width="8.8" height="15.0" fill="rgb(217,159,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1117.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>/re.py:match:172 (105 samples, 0.16%)</title><rect x="832.3" y="213" width="1.8" height="15.0" fill="rgb(252,31,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="835.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>/tornado/escape.py:utf8:199 (24 samples, 0.04%)</title><rect x="461.2" y="325" width="0.4" height="15.0" fill="rgb(237,8,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="464.18" y="335.5" font-size="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:_fileobj_to_fd:32 (6 samples, 0.01%)</title><rect x="1130.6" y="85" width="0.1" height="15.0" fill="rgb(225,161,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1133.61" 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>/tornado/httputil.py:parse:215 (163 samples, 0.25%)</title><rect x="816.6" y="213" width="3.0" height="15.0" fill="rgb(250,11,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="819.64" 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>/tornado/tcpserver.py:_handle_connection:295 (6 samples, 0.01%)</title><rect x="1189.1" y="389" width="0.1" height="15.0" fill="rgb(247,107,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.09" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:update:833 (10 samples, 0.02%)</title><rect x="434.0" y="261" width="0.2" height="15.0" fill="rgb(221,206,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.02" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:303 (11 samples, 0.02%)</title><rect x="1184.5" y="325" width="0.2" height="15.0" fill="rgb(206,122,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.54" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:compute_etag:1488 (62 samples, 0.09%)</title><rect x="456.3" y="325" width="1.1" height="15.0" fill="rgb(232,180,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="459.30" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:future_set_result_unless_cancelled:619 (75 samples, 0.11%)</title><rect x="379.6" y="421" width="1.4" height="15.0" fill="rgb(225,198,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.64" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1356 (12 samples, 0.02%)</title><rect x="1139.4" y="213" width="0.2" height="15.0" fill="rgb(237,60,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.38" 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>/tornado/gen.py:convert_yielded:1358 (9 samples, 0.01%)</title><rect x="1150.8" y="277" width="0.2" height="15.0" fill="rgb(207,149,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.84" 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>/tornado/ioloop.py:call_later:638 (1,448 samples, 2.19%)</title><rect x="133.4" y="389" width="25.8" height="15.0" fill="rgb(250,200,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.39" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:287 (10 samples, 0.02%)</title><rect x="802.9" y="229" width="0.2" height="15.0" fill="rgb(231,228,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.89" 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>/tornado/ioloop.py:call_later:638 (4,021 samples, 6.08%)</title><rect x="291.1" y="405" width="71.8" height="15.0" fill="rgb(248,228,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.13" y="415.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>/urllib/parse.py:parse_qs:652 (320 samples, 0.48%)</title><rect x="854.2" y="181" width="5.7" height="15.0" fill="rgb(226,101,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.19" 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>/tornado/http1connection.py:start_serving:721 (20 samples, 0.03%)</title><rect x="656.4" y="357" width="0.4" height="15.0" fill="rgb(224,101,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="659.42" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/routing.py:find_handler:332 (82 samples, 0.12%)</title><rect x="866.8" y="197" width="1.5" height="15.0" fill="rgb(233,4,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="869.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>/tornado/concurrent.py:copy:595 (47 samples, 0.07%)</title><rect x="759.7" y="213" width="0.9" height="15.0" fill="rgb(213,153,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.72" 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>/tornado/gen.py:handle_yield:1235 (27 samples, 0.04%)</title><rect x="541.7" y="213" width="0.5" height="15.0" fill="rgb(234,132,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.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>/tornado/iostream.py:_read_from_buffer:993 (47 samples, 0.07%)</title><rect x="579.2" y="373" width="0.9" height="15.0" fill="rgb(253,9,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.22" y="383.5" font-size="12" 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 (40 samples, 0.06%)</title><rect x="131.1" y="373" width="0.7" height="15.0" fill="rgb(243,229,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="134.07" y="383.5" font-size="12" 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 (15 samples, 0.02%)</title><rect x="579.7" y="325" width="0.3" height="15.0" fill="rgb(208,119,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.69" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:closed:678 (6 samples, 0.01%)</title><rect x="705.6" y="213" width="0.1" height="15.0" fill="rgb(244,43,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="708.61" 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>/socket.py:family:433 (8 samples, 0.01%)</title><rect x="487.9" y="309" width="0.2" height="15.0" fill="rgb(252,62,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.94" y="319.5" font-size="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:register:243 (7 samples, 0.01%)</title><rect x="1132.2" y="117" width="0.2" height="15.0" fill="rgb(228,46,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1135.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>/asyncio/events.py:__init__:105 (10 samples, 0.02%)</title><rect x="410.7" y="341" width="0.2" height="15.0" fill="rgb(222,47,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="413.71" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:with_timeout:982 (1,238 samples, 1.87%)</title><rect x="763.5" y="261" width="22.1" height="15.0" fill="rgb(244,38,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.54" y="271.5" font-size="12" 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 (137 samples, 0.21%)</title><rect x="96.5" y="469" width="2.5" height="15.0" fill="rgb(234,165,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="99.51" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:172 (200 samples, 0.30%)</title><rect x="418.0" y="373" width="3.5" height="15.0" fill="rgb(231,80,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="420.96" y="383.5" font-size="12" 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_threadsafe:627 (15 samples, 0.02%)</title><rect x="1188.7" y="277" width="0.3" height="15.0" fill="rgb(213,193,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.73" 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>/tornado/gen.py:handle_yield:1229 (7 samples, 0.01%)</title><rect x="1139.9" y="245" width="0.1" height="15.0" fill="rgb(232,193,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.86" y="255.5" font-size="12" 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.02%)</title><rect x="662.0" y="309" width="0.2" height="15.0" fill="rgb(223,128,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="664.97" y="319.5" font-size="12" 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 (59 samples, 0.09%)</title><rect x="271.4" y="357" width="1.0" height="15.0" fill="rgb(254,25,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.36" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:call_at:145 (678 samples, 1.03%)</title><rect x="264.0" y="389" width="12.1" height="15.0" fill="rgb(210,223,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.95" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:wrapper:752 (371 samples, 0.56%)</title><rect x="553.2" y="405" width="6.7" height="15.0" fill="rgb(237,133,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.24" y="415.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="778.0" y="165" width="0.2" height="15.0" fill="rgb(230,119,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.04" 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>/tornado/platform/asyncio.py:remove_timeout:148 (547 samples, 0.83%)</title><rect x="368.8" y="421" width="9.7" height="15.0" fill="rgb(252,164,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.75" y="431.5" font-size="12" 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 (10 samples, 0.02%)</title><rect x="443.1" y="229" width="0.1" height="15.0" fill="rgb(222,25,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.05" 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>/tornado/gen.py:__init__:1078 (4,672 samples, 7.07%)</title><rect x="992.4" y="165" width="83.4" height="15.0" fill="rgb(210,7,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="995.37" y="175.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>/asyncio/base_events.py:create_task:283 (79 samples, 0.12%)</title><rect x="1024.7" y="85" width="1.4" height="15.0" fill="rgb(244,145,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1027.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>/tornado/concurrent.py:future_add_done_callback:649 (6 samples, 0.01%)</title><rect x="1142.6" y="213" width="0.1" height="15.0" fill="rgb(206,7,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.56" 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>/tornado/httputil.py:_parse_body:481 (40 samples, 0.06%)</title><rect x="905.9" y="197" width="0.7" height="15.0" fill="rgb(214,149,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="908.85" 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>/tornado/concurrent.py:future_set_result_unless_cancelled:619 (251 samples, 0.38%)</title><rect x="497.5" y="373" width="4.5" height="15.0" fill="rgb(252,53,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="500.55" y="383.5" font-size="12" 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 (31 samples, 0.05%)</title><rect x="252.3" y="389" width="0.6" height="15.0" fill="rgb(221,22,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.31" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:finish:482 (30 samples, 0.05%)</title><rect x="491.1" y="341" width="0.5" height="15.0" fill="rgb(251,124,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.09" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:__init__:193 (29 samples, 0.04%)</title><rect x="436.7" y="309" width="0.5" height="15.0" fill="rgb(247,227,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.69" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/copy.py:deepcopy:185 (13 samples, 0.02%)</title><rect x="425.9" y="325" width="0.3" height="15.0" fill="rgb(208,5,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="428.95" y="335.5" font-size="12" 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 (51 samples, 0.08%)</title><rect x="516.0" y="357" width="0.9" height="15.0" fill="rgb(209,143,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.01" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_add_error_listener:1124 (7 samples, 0.01%)</title><rect x="558.8" y="325" width="0.2" height="15.0" fill="rgb(210,44,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.83" y="335.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="586.5" y="293" width="0.2" height="15.0" fill="rgb(231,26,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.53" y="303.5" font-size="12" 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_threadsafe:627 (213 samples, 0.32%)</title><rect x="389.4" y="405" width="3.8" height="15.0" fill="rgb(231,32,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="392.41" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:clear:299 (6 samples, 0.01%)</title><rect x="436.6" y="293" width="0.1" height="15.0" fill="rgb(221,116,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.59" y="303.5" font-size="12" 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 (487 samples, 0.74%)</title><rect x="369.8" y="389" width="8.7" height="15.0" fill="rgb(228,55,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.82" y="399.5" font-size="12" 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 (8 samples, 0.01%)</title><rect x="991.6" y="117" width="0.1" height="15.0" fill="rgb(239,191,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="994.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>/tornado/gen.py:timeout_callback:977 (12 samples, 0.02%)</title><rect x="550.3" y="405" width="0.2" height="15.0" fill="rgb(232,144,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.26" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:_execute:1560 (280 samples, 0.42%)</title><rect x="979.0" y="165" width="5.0" height="15.0" fill="rgb(241,135,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="982.03" 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_event_loop:691 (40 samples, 0.06%)</title><rect x="761.5" y="229" width="0.7" height="15.0" fill="rgb(215,16,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.48" 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>/tornado/routing.py:__init__:233 (36 samples, 0.05%)</title><rect x="687.0" y="277" width="0.6" height="15.0" fill="rgb(208,225,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.99" 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>/tornado/iostream.py:_add_io_state:1157 (14 samples, 0.02%)</title><rect x="1083.8" y="197" width="0.2" height="15.0" fill="rgb(208,39,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.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>/tornado/platform/asyncio.py:call_at:145 (834 samples, 1.26%)</title><rect x="770.8" y="229" width="14.8" height="15.0" fill="rgb(214,27,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="773.75" 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/tasks.py:ensure_future:519 (1,928 samples, 2.92%)</title><rect x="168.8" y="357" width="34.5" height="15.0" fill="rgb(232,8,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.83" y="367.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>/tornado/gen.py:_value_from_stopiteration:175 (7 samples, 0.01%)</title><rect x="502.0" y="373" width="0.2" height="15.0" fill="rgb(211,91,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.05" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1149 (10 samples, 0.02%)</title><rect x="543.2" y="405" width="0.2" height="15.0" fill="rgb(253,201,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.17" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:287 (34 samples, 0.05%)</title><rect x="1141.0" y="213" width="0.6" height="15.0" fill="rgb(222,84,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.04" 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>./tornado_server.py:work:33 (1,666 samples, 2.52%)</title><rect x="129.5" y="421" width="29.8" height="15.0" fill="rgb(212,33,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="132.53" y="431.5" font-size="12" 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 (40 samples, 0.06%)</title><rect x="788.0" y="181" width="0.7" height="15.0" fill="rgb(222,84,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.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>/tornado/iostream.py:_run_callback:749 (7 samples, 0.01%)</title><rect x="582.1" y="357" width="0.1" height="15.0" fill="rgb(244,176,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="585.06" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/routing.py:find_handler:338 (665 samples, 1.01%)</title><rect x="885.3" y="149" width="11.8" height="15.0" fill="rgb(231,15,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="888.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>/tornado/web.py:__init__:170 (15 samples, 0.02%)</title><rect x="431.3" y="309" width="0.2" height="15.0" fill="rgb(234,184,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="434.27" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_set_read_callback:866 (44 samples, 0.07%)</title><rect x="527.0" y="309" width="0.8" height="15.0" fill="rgb(207,20,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.05" y="319.5" font-size="12" 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 (15 samples, 0.02%)</title><rect x="132.2" y="357" width="0.3" height="15.0" fill="rgb(249,199,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="135.21" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:current:282 (84 samples, 0.13%)</title><rect x="632.9" y="341" width="1.5" height="15.0" fill="rgb(224,123,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="635.90" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:current:282 (87 samples, 0.13%)</title><rect x="283.5" y="405" width="1.5" height="15.0" fill="rgb(239,62,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.45" y="415.5" font-size="12" 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 (40 samples, 0.06%)</title><rect x="991.5" y="133" width="0.7" height="15.0" fill="rgb(252,69,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="994.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:544 (995 samples, 1.51%)</title><rect x="139.4" y="357" width="17.8" height="15.0" fill="rgb(248,126,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="142.44" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/typing.py:_generic_new:1184 (21 samples, 0.03%)</title><rect x="917.2" y="149" width="0.3" height="15.0" fill="rgb(236,123,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="920.16" 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>/tornado/httputil.py:__setitem__:225 (24 samples, 0.04%)</title><rect x="458.4" y="309" width="0.4" height="15.0" fill="rgb(219,20,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.41" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/enum.py:__new__:533 (249 samples, 0.38%)</title><rect x="609.4" y="325" width="4.5" height="15.0" fill="rgb(226,226,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="612.44" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/netutil.py:accept_handler:244 (20 samples, 0.03%)</title><rect x="591.2" y="405" width="0.4" height="15.0" fill="rgb(241,97,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="594.22" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:add:160 (16 samples, 0.02%)</title><rect x="421.2" y="309" width="0.3" height="15.0" fill="rgb(227,219,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.23" y="319.5" font-size="12" 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 (396 samples, 0.60%)</title><rect x="54.8" y="469" width="7.1" height="15.0" fill="rgb(221,13,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:643 (6 samples, 0.01%)</title><rect x="450.1" y="309" width="0.1" height="15.0" fill="rgb(244,44,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_add_error_listener:1127 (6 samples, 0.01%)</title><rect x="1080.1" y="213" width="0.1" height="15.0" fill="rgb(222,85,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1083.09" 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:596 (113 samples, 0.17%)</title><rect x="409.7" y="357" width="2.0" height="15.0" fill="rgb(250,95,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="412.73" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1358 (26 samples, 0.04%)</title><rect x="1019.3" y="117" width="0.4" height="15.0" fill="rgb(207,38,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1022.28" 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>/tornado/httputil.py:split_host_and_port:1000 (89 samples, 0.13%)</title><rect x="846.4" y="197" width="1.5" height="15.0" fill="rgb(207,27,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="849.35" 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:_get_running_loop:644 (13 samples, 0.02%)</title><rect x="516.1" y="341" width="0.3" height="15.0" fill="rgb(220,200,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.12" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/routing.py:get_target_delegate:356 (144 samples, 0.22%)</title><rect x="427.1" y="293" width="2.6" height="15.0" fill="rgb(233,134,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="430.11" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1166 (155 samples, 0.23%)</title><rect x="543.8" y="405" width="2.8" height="15.0" fill="rgb(223,1,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.82" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_add_io_state:1156 (100 samples, 0.15%)</title><rect x="1082.0" y="197" width="1.8" height="15.0" fill="rgb(224,44,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1084.99" 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:__lt__:183 (7 samples, 0.01%)</title><rect x="156.9" y="325" width="0.1" height="15.0" fill="rgb(226,105,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="159.90" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:handle_yield:1221 (151 samples, 0.23%)</title><rect x="442.1" y="277" width="2.7" height="15.0" fill="rgb(205,6,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.12" 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>/tornado/httpserver.py:handle_stream:194 (29,847 samples, 45.17%)</title><rect x="656.1" y="373" width="533.0" height="15.0" fill="rgb(227,82,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="659.13" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/tornado/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1119 (16 samples, 0.02%)</title><rect x="510.6" y="405" width="0.3" height="15.0" fill="rgb(211,57,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="513.60" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:292 (45 samples, 0.07%)</title><rect x="1089.1" y="165" width="0.8" height="15.0" fill="rgb(220,166,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1092.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>/tornado/iostream.py:_read_to_buffer_loop:815 (768 samples, 1.16%)</title><rect x="707.0" y="229" width="13.7" height="15.0" fill="rgb(220,52,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="710.02" 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>/tornado/concurrent.py:future_add_done_callback:652 (18 samples, 0.03%)</title><rect x="1075.5" y="117" width="0.3" height="15.0" fill="rgb(209,209,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.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>/tornado/stack_context.py:wrap:296 (605 samples, 0.92%)</title><rect x="1090.0" y="165" width="10.8" height="15.0" fill="rgb(212,210,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1092.99" 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>/tornado/iostream.py:_read_to_buffer:941 (7 samples, 0.01%)</title><rect x="566.0" y="357" width="0.1" height="15.0" fill="rgb(235,172,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.97" y="367.5" font-size="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 (6 samples, 0.01%)</title><rect x="52.6" y="437" width="0.1" height="15.0" fill="rgb(241,183,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="55.57" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:303 (9 samples, 0.01%)</title><rect x="962.9" y="149" width="0.2" height="15.0" fill="rgb(252,62,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.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>/tornado/http1connection.py:_parse_headers:533 (165 samples, 0.25%)</title><rect x="418.6" y="357" width="2.9" height="15.0" fill="rgb(245,8,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="421.57" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_on_connection_close:299 (75 samples, 0.11%)</title><rect x="555.0" y="373" width="1.3" height="15.0" fill="rgb(211,199,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.98" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_on_connection_close:301 (91 samples, 0.14%)</title><rect x="556.5" y="373" width="1.7" height="15.0" fill="rgb(244,212,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.53" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:finish:1041 (31 samples, 0.05%)</title><rect x="464.3" y="357" width="0.5" height="15.0" fill="rgb(254,55,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="467.27" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:662 (6 samples, 0.01%)</title><rect x="519.5" y="309" width="0.1" height="15.0" fill="rgb(242,158,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.49" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:296 (51 samples, 0.08%)</title><rect x="1183.6" y="325" width="0.9" height="15.0" fill="rgb(211,154,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.63" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__getitem__:229 (6 samples, 0.01%)</title><rect x="474.9" y="293" width="0.1" height="15.0" fill="rgb(242,223,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.93" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:is_future:380 (14 samples, 0.02%)</title><rect x="1019.5" y="101" width="0.2" height="15.0" fill="rgb(214,188,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1022.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>/tornado/web.py:__init__:172 (15 samples, 0.02%)</title><rect x="911.7" y="181" width="0.3" height="15.0" fill="rgb(244,169,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.71" 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:285 (62 samples, 0.09%)</title><rect x="443.7" y="213" width="1.1" height="15.0" fill="rgb(221,117,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.66" 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>/selectors.py:get_map:273 (36 samples, 0.05%)</title><rect x="1110.1" y="117" width="0.7" height="15.0" fill="rgb(231,149,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1113.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>/selectors.py:_fileobj_lookup:224 (18 samples, 0.03%)</title><rect x="574.6" y="245" width="0.3" height="15.0" fill="rgb(234,146,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.62" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:__init__:247 (142 samples, 0.21%)</title><rect x="632.0" y="357" width="2.5" height="15.0" fill="rgb(215,133,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="635.01" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/netutil.py:accept_handler:249 (1,637 samples, 2.48%)</title><rect x="591.7" y="405" width="29.3" height="15.0" fill="rgb(221,62,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="594.74" y="415.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>/tornado/concurrent.py:is_future:380 (11 samples, 0.02%)</title><rect x="206.6" y="373" width="0.2" height="15.0" fill="rgb(220,77,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="209.62" y="383.5" font-size="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:_fileobj_to_fd:40 (11 samples, 0.02%)</title><rect x="1113.5" y="85" width="0.2" height="15.0" fill="rgb(223,168,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1116.54" 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>./tornado_server.py:get:42 (3,411 samples, 5.16%)</title><rect x="215.8" y="437" width="60.9" height="15.0" fill="rgb(232,127,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="218.81" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >./torn..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:_execute:1593 (13 samples, 0.02%)</title><rect x="451.9" y="373" width="0.2" height="15.0" fill="rgb(249,42,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.85" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:set_default_headers:309 (14 samples, 0.02%)</title><rect x="957.8" y="149" width="0.3" height="15.0" fill="rgb(254,19,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="960.83" 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_running_loop:644 (11 samples, 0.02%)</title><rect x="131.1" y="357" width="0.2" height="15.0" fill="rgb(228,104,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="134.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:sleep:1012 (133 samples, 0.20%)</title><rect x="282.7" y="421" width="2.4" height="15.0" fill="rgb(209,164,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.74" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__init__:372 (6 samples, 0.01%)</title><rect x="850.6" y="213" width="0.1" height="15.0" fill="rgb(212,227,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="853.57" 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:<listcomp>:685 (11 samples, 0.02%)</title><rect x="425.1" y="277" width="0.2" height="15.0" fill="rgb(240,94,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="428.12" 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/base_events.py:time:526 (8 samples, 0.01%)</title><rect x="157.1" y="341" width="0.1" height="15.0" fill="rgb(224,71,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.06" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1165 (6 samples, 0.01%)</title><rect x="543.7" y="405" width="0.1" height="15.0" fill="rgb(211,115,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.71" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_can_keep_alive:500 (12 samples, 0.02%)</title><rect x="422.4" y="357" width="0.2" height="15.0" fill="rgb(244,204,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.39" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:292 (14 samples, 0.02%)</title><rect x="782.8" y="213" width="0.3" height="15.0" fill="rgb(227,224,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="785.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>/tornado/web.py:__init__:192 (229 samples, 0.35%)</title><rect x="432.6" y="309" width="4.1" height="15.0" fill="rgb(251,109,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.61" y="319.5" font-size="12" 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:_ensure_fd_no_transport:251 (199 samples, 0.30%)</title><rect x="1102.9" y="149" width="3.6" height="15.0" fill="rgb(220,178,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1105.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>/tornado/ioloop.py:add_future:719 (32 samples, 0.05%)</title><rect x="1142.3" y="229" width="0.5" height="15.0" fill="rgb(214,43,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.27" 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/base_events.py:_call_soon:599 (14 samples, 0.02%)</title><rect x="389.1" y="389" width="0.2" height="15.0" fill="rgb(209,17,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="392.05" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:_convert_header_value:381 (64 samples, 0.10%)</title><rect x="466.7" y="325" width="1.1" height="15.0" fill="rgb(212,188,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.68" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:call_at:143 (12 samples, 0.02%)</title><rect x="294.0" y="389" width="0.2" height="15.0" fill="rgb(205,35,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.00" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:__contains__:666 (15 samples, 0.02%)</title><rect x="907.2" y="165" width="0.2" height="15.0" fill="rgb(229,177,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.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>/tornado/http1connection.py:_read_message:245 (16 samples, 0.02%)</title><rect x="447.7" y="373" width="0.3" height="15.0" fill="rgb(210,146,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="450.69" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:handle_yield:1234 (14 samples, 0.02%)</title><rect x="1060.6" y="149" width="0.2" height="15.0" fill="rgb(252,100,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.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>/tornado/platform/asyncio.py:_handle_events:121 (29 samples, 0.04%)</title><rect x="562.4" y="437" width="0.5" height="15.0" fill="rgb(231,78,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.39" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1147 (179 samples, 0.27%)</title><rect x="539.7" y="325" width="3.2" height="15.0" fill="rgb(216,33,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.65" y="335.5" font-size="12" 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:_ensure_fd_no_transport:253 (9 samples, 0.01%)</title><rect x="1106.6" y="149" width="0.2" height="15.0" fill="rgb(234,31,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1109.61" 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>/tornado/gen.py:wrapper:299 (6 samples, 0.01%)</title><rect x="663.5" y="341" width="0.1" height="15.0" fill="rgb(252,83,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="666.47" y="351.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="386.0" y="389" width="0.1" height="15.0" fill="rgb(243,152,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="388.97" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:update:841 (15 samples, 0.02%)</title><rect x="434.5" y="261" width="0.2" height="15.0" fill="rgb(227,140,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.48" y="271.5" font-size="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 (40 samples, 0.06%)</title><rect x="95.8" y="453" width="0.7" height="15.0" fill="rgb(214,222,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.80" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:update:833 (38 samples, 0.06%)</title><rect x="815.1" y="181" width="0.7" height="15.0" fill="rgb(220,180,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="818.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>/tornado/iostream.py:_read_to_buffer:944 (10 samples, 0.02%)</title><rect x="531.1" y="277" width="0.2" height="15.0" fill="rgb(222,120,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="534.08" 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>/selectors.py:register:408 (29 samples, 0.04%)</title><rect x="1132.5" y="133" width="0.5" height="15.0" fill="rgb(210,32,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1135.50" 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>/tornado/gen.py:__init__:1065 (11 samples, 0.02%)</title><rect x="1145.1" y="325" width="0.2" height="15.0" fill="rgb(250,207,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1148.13" y="335.5" font-size="12" 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 (19 samples, 0.03%)</title><rect x="1058.6" y="37" width="0.3" height="15.0" fill="rgb(246,151,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.56" 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>/tornado/gen.py:run:1177 (191 samples, 0.29%)</title><rect x="546.8" y="405" width="3.4" height="15.0" fill="rgb(217,109,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.81" y="415.5" font-size="12" 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 (83 samples, 0.13%)</title><rect x="544.9" y="373" width="1.5" height="15.0" fill="rgb(242,217,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.92" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:call_at:143 (8 samples, 0.01%)</title><rect x="263.3" y="389" width="0.1" height="15.0" fill="rgb(216,53,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:handle_yield:1230 (750 samples, 1.13%)</title><rect x="1151.2" y="309" width="13.4" height="15.0" fill="rgb(208,67,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.20" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__init__:136 (15 samples, 0.02%)</title><rect x="813.3" y="197" width="0.3" height="15.0" fill="rgb(236,137,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.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>/tornado/gen.py:handle_yield:1235 (837 samples, 1.27%)</title><rect x="1060.8" y="149" width="15.0" height="15.0" fill="rgb(215,30,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.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>/tornado/gen.py:handle_yield:1235 (11 samples, 0.02%)</title><rect x="539.4" y="325" width="0.2" height="15.0" fill="rgb(227,23,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.44" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:log_request:2151 (10 samples, 0.02%)</title><rect x="491.9" y="325" width="0.2" height="15.0" fill="rgb(245,52,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.92" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:287 (25 samples, 0.04%)</title><rect x="272.6" y="373" width="0.5" height="15.0" fill="rgb(249,149,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.65" y="383.5" font-size="12" 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 (10 samples, 0.02%)</title><rect x="54.3" y="469" width="0.2" height="15.0" fill="rgb(220,171,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.28" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:287 (95 samples, 0.14%)</title><rect x="354.7" y="373" width="1.7" height="15.0" fill="rgb(213,136,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:646 (11 samples, 0.02%)</title><rect x="559.2" y="309" width="0.2" height="15.0" fill="rgb(241,189,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.24" y="319.5" font-size="12" 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 (39 samples, 0.06%)</title><rect x="551.6" y="373" width="0.7" height="15.0" fill="rgb(248,114,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.58" y="383.5" font-size="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:register:405 (27 samples, 0.04%)</title><rect x="744.4" y="165" width="0.5" height="15.0" fill="rgb(238,163,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.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>/tornado/web.py:__init__:174 (23 samples, 0.03%)</title><rect x="912.0" y="181" width="0.4" height="15.0" fill="rgb(211,28,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.03" 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>/tornado/ioloop.py:add_future:719 (39 samples, 0.06%)</title><rect x="1171.5" y="293" width="0.7" height="15.0" fill="rgb(205,139,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1174.47" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:<lambda>:367 (7 samples, 0.01%)</title><rect x="562.3" y="437" width="0.1" height="15.0" fill="rgb(237,15,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.26" y="447.5" font-size="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:_fileobj_lookup:224 (12 samples, 0.02%)</title><rect x="572.9" y="245" width="0.2" height="15.0" fill="rgb(231,53,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.89" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:_execute:1562 (81 samples, 0.12%)</title><rect x="984.2" y="165" width="1.4" height="15.0" fill="rgb(225,50,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="987.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>/tornado/web.py:__init__:175 (11 samples, 0.02%)</title><rect x="912.4" y="181" width="0.2" height="15.0" fill="rgb(218,32,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.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>/tornado/gen.py:handle_yield:1221 (107 samples, 0.16%)</title><rect x="547.5" y="389" width="1.9" height="15.0" fill="rgb(251,174,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.53" y="399.5" font-size="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:get_key:189 (703 samples, 1.06%)</title><rect x="1110.8" y="133" width="12.6" height="15.0" fill="rgb(233,181,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1113.83" 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>/tornado/web.py:_has_stream_request_body:1809 (13 samples, 0.02%)</title><rect x="986.5" y="149" width="0.2" height="15.0" fill="rgb(225,162,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="989.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__:105 (6 samples, 0.01%)</title><rect x="202.1" y="293" width="0.1" height="15.0" fill="rgb(232,48,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.12" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/tcpserver.py:_handle_connection:292 (802 samples, 1.21%)</title><rect x="627.9" y="389" width="14.4" height="15.0" fill="rgb(249,191,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="630.94" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:<lambda>:988 (469 samples, 0.71%)</title><rect x="786.6" y="229" width="8.4" height="15.0" fill="rgb(226,177,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.59" 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>/copy.py:_keep_alive:263 (25 samples, 0.04%)</title><rect x="863.6" y="181" width="0.4" height="15.0" fill="rgb(236,134,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.59" 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>/tornado/httputil.py:__getitem__:229 (19 samples, 0.03%)</title><rect x="901.0" y="197" width="0.3" height="15.0" fill="rgb(224,38,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="903.98" 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>/tornado/gen.py:wrapper:318 (109 samples, 0.16%)</title><rect x="975.7" y="181" width="2.0" height="15.0" fill="rgb(207,34,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="978.72" 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>/re.py:match:172 (12 samples, 0.02%)</title><rect x="423.9" y="309" width="0.2" height="15.0" fill="rgb(206,39,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.89" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:__contains__:666 (35 samples, 0.05%)</title><rect x="900.7" y="213" width="0.6" height="15.0" fill="rgb(233,190,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="903.69" 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>/tornado/httputil.py:get_all:176 (8 samples, 0.01%)</title><rect x="480.7" y="277" width="0.1" height="15.0" fill="rgb(236,25,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.69" 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>/tornado/concurrent.py:future_set_result_unless_cancelled:618 (18 samples, 0.03%)</title><rect x="497.2" y="373" width="0.3" height="15.0" fill="rgb(243,209,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="500.23" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/weakref.py:__getitem__:394 (21 samples, 0.03%)</title><rect x="548.5" y="341" width="0.4" height="15.0" fill="rgb(221,124,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.48" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:sleep:1013 (1,494 samples, 2.26%)</title><rect x="132.6" y="405" width="26.6" height="15.0" fill="rgb(207,30,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="135.57" y="415.5" font-size="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 (10 samples, 0.02%)</title><rect x="435.0" y="261" width="0.1" height="15.0" fill="rgb(227,104,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.96" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:296 (10 samples, 0.02%)</title><rect x="1078.9" y="213" width="0.2" height="15.0" fill="rgb(250,61,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.88" 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>/tornado/stack_context.py:null_wrapper:302 (11 samples, 0.02%)</title><rect x="559.7" y="389" width="0.2" height="15.0" fill="rgb(241,225,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.67" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_parse_headers:529 (23 samples, 0.03%)</title><rect x="418.0" y="357" width="0.4" height="15.0" fill="rgb(241,132,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="421.00" y="367.5" font-size="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:get_key:185 (18 samples, 0.03%)</title><rect x="572.2" y="277" width="0.3" height="15.0" fill="rgb(236,160,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.19" 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>/tornado/ioloop.py:add_future:717 (23 samples, 0.03%)</title><rect x="541.8" y="197" width="0.4" height="15.0" fill="rgb(245,129,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.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>/selectors.py:select:455 (13 samples, 0.02%)</title><rect x="52.5" y="453" width="0.2" height="15.0" fill="rgb(210,90,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="55.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:641 (7 samples, 0.01%)</title><rect x="518.7" y="309" width="0.1" height="15.0" fill="rgb(205,78,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.71" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:_parse_body:481 (7 samples, 0.01%)</title><rect x="430.7" y="325" width="0.1" height="15.0" fill="rgb(245,154,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.71" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:643 (6 samples, 0.01%)</title><rect x="518.8" y="309" width="0.1" height="15.0" fill="rgb(235,132,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.83" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:_intenum_converter:103 (63 samples, 0.10%)</title><rect x="650.0" y="325" width="1.1" height="15.0" fill="rgb(232,163,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.01" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:187 (46 samples, 0.07%)</title><rect x="897.8" y="245" width="0.8" height="15.0" fill="rgb(219,80,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="900.82" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:287 (26 samples, 0.04%)</title><rect x="1088.7" y="165" width="0.4" height="15.0" fill="rgb(247,136,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1091.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>/tornado/gen.py:<lambda>:347 (10 samples, 0.02%)</title><rect x="368.5" y="437" width="0.2" height="15.0" fill="rgb(234,64,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.48" y="447.5" font-size="12" 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:_ensure_fd_no_transport:258 (6 samples, 0.01%)</title><rect x="1106.8" y="149" width="0.1" height="15.0" fill="rgb(248,2,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1109.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>/tornado/stack_context.py:wrap:296 (69 samples, 0.10%)</title><rect x="1073.7" y="117" width="1.2" height="15.0" fill="rgb(250,182,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.67" 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>/tornado/httputil.py:format_timestamp:841 (114 samples, 0.17%)</title><rect x="940.9" y="149" width="2.1" height="15.0" fill="rgb(239,5,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.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>/tornado/gen.py:__init__:1067 (6 samples, 0.01%)</title><rect x="990.7" y="165" width="0.1" height="15.0" fill="rgb(252,180,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.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>/tornado/platform/asyncio.py:add_handler:78 (23 samples, 0.03%)</title><rect x="1100.9" y="181" width="0.4" height="15.0" fill="rgb(208,192,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1103.93" 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:ensure_future:519 (76 samples, 0.12%)</title><rect x="443.4" y="229" width="1.4" height="15.0" fill="rgb(210,191,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.44" 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>/tornado/httputil.py:__setitem__:223 (6 samples, 0.01%)</title><rect x="421.3" y="293" width="0.1" height="15.0" fill="rgb(208,122,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.27" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:_execute:1558 (29 samples, 0.04%)</title><rect x="978.5" y="165" width="0.5" height="15.0" fill="rgb(230,196,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="981.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>/tornado/http1connection.py:_on_connection_close:296 (14 samples, 0.02%)</title><rect x="554.7" y="373" width="0.2" height="15.0" fill="rgb(211,141,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.67" y="383.5" font-size="12" 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 (385 samples, 0.58%)</title><rect x="344.8" y="357" width="6.8" height="15.0" fill="rgb(230,98,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="347.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:current:282 (95 samples, 0.14%)</title><rect x="1145.8" y="309" width="1.7" height="15.0" fill="rgb(206,65,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1148.81" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:write_headers:384 (31 samples, 0.05%)</title><rect x="475.0" y="325" width="0.6" height="15.0" fill="rgb(226,30,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.03" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:with_timeout:965 (68 samples, 0.10%)</title><rect x="253.0" y="421" width="1.2" height="15.0" fill="rgb(236,190,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.97" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:_run_callback:759 (8 samples, 0.01%)</title><rect x="561.9" y="437" width="0.1" height="15.0" fill="rgb(242,97,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.89" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:sleep:1012 (39 samples, 0.06%)</title><rect x="131.9" y="405" width="0.7" height="15.0" fill="rgb(235,6,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="134.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:__enter__:246 (19 samples, 0.03%)</title><rect x="582.8" y="341" width="0.4" height="15.0" fill="rgb(226,198,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="585.81" y="351.5" font-size="12" 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:_remove_reader:284 (8 samples, 0.01%)</title><rect x="573.7" y="293" width="0.1" height="15.0" fill="rgb(219,54,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.71" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:__init__:1062 (10 samples, 0.02%)</title><rect x="990.1" y="165" width="0.2" height="15.0" fill="rgb(250,202,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.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>/asyncio/base_events.py:create_task:285 (1,875 samples, 2.84%)</title><rect x="1026.3" y="85" width="33.5" height="15.0" fill="rgb(222,208,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1029.28" y="95.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>/tornado/platform/asyncio.py:add_callback:154 (187 samples, 0.28%)</title><rect x="505.8" y="357" width="3.3" height="15.0" fill="rgb(250,222,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.76" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:_contains_yieldpoint:715 (14 samples, 0.02%)</title><rect x="799.8" y="245" width="0.3" height="15.0" fill="rgb(253,167,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.82" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:<lambda>:725 (8 samples, 0.01%)</title><rect x="552.9" y="405" width="0.2" height="15.0" fill="rgb(219,26,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.92" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:set_header:342 (129 samples, 0.20%)</title><rect x="457.6" y="325" width="2.3" height="15.0" fill="rgb(222,140,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.59" y="335.5" font-size="12" 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 (34 samples, 0.05%)</title><rect x="761.6" y="213" width="0.6" height="15.0" fill="rgb(222,42,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.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>/tornado/gen.py:_contains_yieldpoint:713 (31 samples, 0.05%)</title><rect x="1010.7" y="133" width="0.6" height="15.0" fill="rgb(240,199,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1013.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>/tornado/escape.py:utf8:195 (6 samples, 0.01%)</title><rect x="463.7" y="325" width="0.2" height="15.0" fill="rgb(248,52,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="466.75" y="335.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="546.1" y="325" width="0.1" height="15.0" fill="rgb(239,9,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.08" y="335.5" font-size="12" 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 (6 samples, 0.01%)</title><rect x="794.3" y="181" width="0.1" height="15.0" fill="rgb(239,31,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.32" 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>/tornado/routing.py:find_handler:338 (1,599 samples, 2.42%)</title><rect x="868.7" y="197" width="28.5" height="15.0" fill="rgb(244,152,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="871.66" y="207.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>/tornado/iostream.py:__init__:273 (34 samples, 0.05%)</title><rect x="641.1" y="357" width="0.6" height="15.0" fill="rgb(211,202,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="644.08" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:__contains__:666 (68 samples, 0.10%)</title><rect x="453.6" y="341" width="1.2" height="15.0" fill="rgb(252,77,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.62" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_handle_write:1083 (14 samples, 0.02%)</title><rect x="486.6" y="293" width="0.2" height="15.0" fill="rgb(221,48,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.57" y="303.5" font-size="12" 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 (12 samples, 0.02%)</title><rect x="53.9" y="437" width="0.3" height="15.0" fill="rgb(248,193,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.94" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:__init__:1078 (420 samples, 0.64%)</title><rect x="798.4" y="277" width="7.5" height="15.0" fill="rgb(212,25,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="801.36" 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/coroutines.py:iscoroutine:272 (7 samples, 0.01%)</title><rect x="167.5" y="341" width="0.1" height="15.0" fill="rgb(225,213,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="170.46" y="351.5" font-size="12" 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 (224 samples, 0.34%)</title><rect x="775.4" y="197" width="4.0" height="15.0" fill="rgb(232,225,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="778.39" 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>/tornado/platform/asyncio.py:call_at:145 (3,715 samples, 5.62%)</title><rect x="296.6" y="389" width="66.3" height="15.0" fill="rgb(254,2,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="299.59" y="399.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>/tornado/web.py:finish:1054 (186 samples, 0.28%)</title><rect x="491.6" y="357" width="3.3" height="15.0" fill="rgb(223,171,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.62" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:callback:896 (82 samples, 0.12%)</title><rect x="379.5" y="437" width="1.5" height="15.0" fill="rgb(219,191,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.52" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1358 (35 samples, 0.05%)</title><rect x="752.4" y="229" width="0.6" height="15.0" fill="rgb(249,50,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="755.38" 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>/tornado/stack_context.py:wrap:294 (12 samples, 0.02%)</title><rect x="1073.5" y="117" width="0.2" height="15.0" fill="rgb(224,58,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.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>/tornado/iostream.py:_run_read_callback:889 (25 samples, 0.04%)</title><rect x="579.5" y="357" width="0.5" height="15.0" fill="rgb(217,128,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.53" y="367.5" font-size="12" 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 (6 samples, 0.01%)</title><rect x="486.7" y="261" width="0.1" height="15.0" fill="rgb(246,3,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.67" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:307 (300 samples, 0.45%)</title><rect x="970.4" y="181" width="5.3" height="15.0" fill="rgb(245,53,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.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>/asyncio/base_events.py:call_at:561 (7 samples, 0.01%)</title><rect x="533.2" y="261" width="0.1" height="15.0" fill="rgb(244,104,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.15" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:formatdate:159 (18 samples, 0.03%)</title><rect x="435.2" y="261" width="0.3" height="15.0" fill="rgb(236,229,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.21" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:326 (62 samples, 0.09%)</title><rect x="439.7" y="309" width="1.1" height="15.0" fill="rgb(237,172,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.71" y="319.5" font-size="12" 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 (40 samples, 0.06%)</title><rect x="662.3" y="293" width="0.7" height="15.0" fill="rgb(246,214,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="665.27" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:chain_future:603 (12 samples, 0.02%)</title><rect x="253.9" y="405" width="0.2" height="15.0" fill="rgb(214,100,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.92" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:__init__:119 (542 samples, 0.82%)</title><rect x="670.3" y="309" width="9.7" height="15.0" fill="rgb(212,115,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="673.27" y="319.5" font-size="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:get_key:189 (45 samples, 0.07%)</title><rect x="572.5" y="277" width="0.8" height="15.0" fill="rgb(214,130,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.53" 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>/tornado/iostream.py:set_close_callback:605 (62 samples, 0.09%)</title><rect x="1078.0" y="229" width="1.1" height="15.0" fill="rgb(252,209,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.04" 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>/tornado/httputil.py:_parse_body:483 (97 samples, 0.15%)</title><rect x="906.6" y="197" width="1.8" height="15.0" fill="rgb(227,171,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.64" 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:_add_reader:266 (18 samples, 0.03%)</title><rect x="1126.9" y="149" width="0.4" height="15.0" fill="rgb(214,182,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1129.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>/tornado/gen.py:handle_yield:1221 (134 samples, 0.20%)</title><rect x="1137.4" y="245" width="2.4" height="15.0" fill="rgb(216,183,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1140.43" y="255.5" font-size="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:parse_qs:650 (17 samples, 0.03%)</title><rect x="853.7" y="181" width="0.3" height="15.0" fill="rgb(221,86,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.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>/asyncio/base_events.py:call_soon:579 (15 samples, 0.02%)</title><rect x="444.5" y="197" width="0.3" height="15.0" fill="rgb(236,33,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="447.50" 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>/tornado/gen.py:_contains_yieldpoint:713 (11 samples, 0.02%)</title><rect x="503.8" y="357" width="0.2" height="15.0" fill="rgb(208,41,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.78" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_finish_request:520 (7 samples, 0.01%)</title><rect x="490.7" y="325" width="0.1" height="15.0" fill="rgb(240,33,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.71" y="335.5" font-size="12" 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 (79 samples, 0.12%)</title><rect x="1146.0" y="293" width="1.4" height="15.0" fill="rgb(228,43,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1149.04" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1356 (14 samples, 0.02%)</title><rect x="549.0" y="357" width="0.2" height="15.0" fill="rgb(224,96,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.99" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:split_host_and_port:997 (14 samples, 0.02%)</title><rect x="423.9" y="325" width="0.2" height="15.0" fill="rgb(243,177,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.86" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/tcpserver.py:_handle_connection:291 (8 samples, 0.01%)</title><rect x="627.8" y="389" width="0.1" height="15.0" fill="rgb(208,173,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="630.79" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:close_fd:1228 (26 samples, 0.04%)</title><rect x="576.3" y="325" width="0.5" height="15.0" fill="rgb(223,56,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.35" y="335.5" font-size="12" 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_threadsafe:624 (174 samples, 0.26%)</title><rect x="386.2" y="405" width="3.1" height="15.0" fill="rgb(231,121,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.23" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:handle_yield:1186 (18 samples, 0.03%)</title><rect x="547.2" y="389" width="0.3" height="15.0" fill="rgb(250,58,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.15" y="399.5" font-size="12" 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 (26 samples, 0.04%)</title><rect x="991.7" y="117" width="0.5" height="15.0" fill="rgb(234,65,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="994.74" 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>/tornado/ioloop.py:add_future:716 (13 samples, 0.02%)</title><rect x="1174.3" y="341" width="0.2" height="15.0" fill="rgb(226,107,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1177.25" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_try_inline_read:913 (1,147 samples, 1.74%)</title><rect x="705.8" y="245" width="20.5" height="15.0" fill="rgb(234,207,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="708.81" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:time:591 (52 samples, 0.08%)</title><rect x="747.0" y="261" width="0.9" height="15.0" fill="rgb(244,228,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="749.98" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:__init__:698 (6 samples, 0.01%)</title><rect x="655.2" y="357" width="0.1" height="15.0" fill="rgb(231,210,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="658.18" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1173 (9 samples, 0.01%)</title><rect x="1136.0" y="261" width="0.1" height="15.0" fill="rgb(214,126,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.98" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:get_target_delegate:1883 (57 samples, 0.09%)</title><rect x="869.6" y="181" width="1.0" height="15.0" fill="rgb(220,177,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="872.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>/asyncio/events.py:__init__:110 (27 samples, 0.04%)</title><rect x="501.0" y="325" width="0.5" height="15.0" fill="rgb(239,135,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="503.98" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/email/utils.py:_format_timetuple_and_zone:131 (17 samples, 0.03%)</title><rect x="954.9" y="101" width="0.3" height="15.0" fill="rgb(238,38,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="957.94" 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>/tornado/http1connection.py:_clear_callbacks:272 (6 samples, 0.01%)</title><rect x="488.7" y="309" width="0.1" height="15.0" fill="rgb(229,45,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.71" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_can_keep_alive:500 (66 samples, 0.10%)</title><rect x="836.4" y="229" width="1.1" height="15.0" fill="rgb(207,154,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="839.36" 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>/tornado/gen.py:run:1166 (294 samples, 0.44%)</title><rect x="496.9" y="389" width="5.3" height="15.0" fill="rgb(236,179,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.92" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1147 (1,650 samples, 2.50%)</title><rect x="513.7" y="405" width="29.5" height="15.0" fill="rgb(245,70,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.71" y="415.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>/tornado/httputil.py:__init__:140 (42 samples, 0.06%)</title><rect x="433.2" y="277" width="0.7" height="15.0" fill="rgb(239,165,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.18" 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>/tornado/web.py:__init__:3157 (11 samples, 0.02%)</title><rect x="918.5" y="165" width="0.2" height="15.0" fill="rgb(243,214,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.48" 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>/abc.py:__instancecheck__:184 (29 samples, 0.04%)</title><rect x="935.4" y="117" width="0.5" height="15.0" fill="rgb(230,64,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="938.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:get_event_loop:691 (115 samples, 0.17%)</title><rect x="280.3" y="389" width="2.0" height="15.0" fill="rgb(225,146,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.27" y="399.5" font-size="12" 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 (18 samples, 0.03%)</title><rect x="1023.5" y="85" width="0.3" height="15.0" fill="rgb(251,164,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1026.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>/asyncio/base_events.py:call_soon:579 (8 samples, 0.01%)</title><rect x="503.2" y="357" width="0.2" height="15.0" fill="rgb(229,167,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.25" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__setitem__:225 (7 samples, 0.01%)</title><rect x="434.6" y="245" width="0.1" height="15.0" fill="rgb(247,173,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.62" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:timeout_callback:978 (109 samples, 0.16%)</title><rect x="550.5" y="405" width="1.9" height="15.0" fill="rgb(229,170,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:request_time:450 (20 samples, 0.03%)</title><rect x="492.9" y="309" width="0.4" height="15.0" fill="rgb(244,102,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.94" y="319.5" font-size="12" 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:_add_reader:261 (15 samples, 0.02%)</title><rect x="1107.9" y="149" width="0.3" height="15.0" fill="rgb(215,106,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1110.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/selector_events.py:_add_reader:267 (7 samples, 0.01%)</title><rect x="542.7" y="213" width="0.1" height="15.0" fill="rgb(239,121,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.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>/tornado/gen.py:__init__:1080 (26 samples, 0.04%)</title><rect x="1172.2" y="325" width="0.4" height="15.0" fill="rgb(224,10,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.16" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:future_set_result_unless_cancelled:619 (82 samples, 0.12%)</title><rect x="556.7" y="357" width="1.5" height="15.0" fill="rgb(220,7,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.69" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:287 (11 samples, 0.02%)</title><rect x="436.9" y="277" width="0.2" height="15.0" fill="rgb(243,10,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.86" 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/events.py:__init__:110 (10 samples, 0.02%)</title><rect x="351.2" y="325" width="0.1" height="15.0" fill="rgb(205,103,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="354.16" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:177 (6 samples, 0.01%)</title><rect x="540.0" y="309" width="0.1" height="15.0" fill="rgb(244,82,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.01" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_add_error_listener:1121 (6 samples, 0.01%)</title><rect x="489.5" y="277" width="0.1" height="15.0" fill="rgb(215,87,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.50" 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>/tornado/gen.py:convert_yielded:1356 (27 samples, 0.04%)</title><rect x="223.4" y="389" width="0.4" height="15.0" fill="rgb(248,157,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="226.37" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:287 (25 samples, 0.04%)</title><rect x="157.3" y="357" width="0.4" height="15.0" fill="rgb(218,103,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.30" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/routing.py:headers_received:242 (1,319 samples, 2.00%)</title><rect x="841.1" y="229" width="23.5" height="15.0" fill="rgb(246,166,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="844.07" 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>/tornado/iostream.py:__init__:270 (13 samples, 0.02%)</title><rect x="640.8" y="357" width="0.2" height="15.0" fill="rgb(232,176,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:close:634 (35 samples, 0.05%)</title><rect x="576.2" y="341" width="0.7" height="15.0" fill="rgb(207,69,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1352 (10 samples, 0.02%)</title><rect x="1018.9" y="117" width="0.2" height="15.0" fill="rgb(235,157,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1021.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/tasks.py:ensure_future:518 (35 samples, 0.05%)</title><rect x="1023.9" y="101" width="0.6" height="15.0" fill="rgb(242,172,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1026.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>/tornado/web.py:clear:297 (9 samples, 0.01%)</title><rect x="958.1" y="165" width="0.1" height="15.0" fill="rgb(222,65,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.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>/tornado/platform/asyncio.py:update_handler:92 (21 samples, 0.03%)</title><rect x="542.5" y="245" width="0.3" height="15.0" fill="rgb(212,173,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.46" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_read_to_buffer:962 (12 samples, 0.02%)</title><rect x="715.8" y="213" width="0.3" height="15.0" fill="rgb(251,16,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="718.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:__lt__:183 (137 samples, 0.21%)</title><rect x="59.5" y="453" width="2.4" height="15.0" fill="rgb(236,147,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="62.46" y="463.5" font-size="12" 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 (8 samples, 0.01%)</title><rect x="1058.4" y="37" width="0.2" height="15.0" fill="rgb(224,119,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.42" 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>/tornado/web.py:__init__:2168 (7 samples, 0.01%)</title><rect x="429.2" y="229" width="0.1" height="15.0" fill="rgb(235,222,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.20" 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>/tornado/platform/posix.py:set_close_exec:27 (83 samples, 0.13%)</title><rect x="621.9" y="389" width="1.4" height="15.0" fill="rgb(213,176,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="624.87" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/re.py:match:172 (15 samples, 0.02%)</title><rect x="421.8" y="341" width="0.3" height="15.0" fill="rgb(205,223,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.80" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_parse_headers:533 (1,042 samples, 1.58%)</title><rect x="812.1" y="229" width="18.6" height="15.0" fill="rgb(205,122,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.07" 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>/tornado/httputil.py:parse_line:198 (6 samples, 0.01%)</title><rect x="539.9" y="261" width="0.1" height="15.0" fill="rgb(251,131,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.90" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_find_read_pos:1029 (25 samples, 0.04%)</title><rect x="721.4" y="213" width="0.4" height="15.0" fill="rgb(238,222,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="724.40" 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>/_weakrefset.py:__contains__:72 (6 samples, 0.01%)</title><rect x="525.5" y="325" width="0.1" height="15.0" fill="rgb(226,190,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.53" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1141 (8 samples, 0.01%)</title><rect x="1172.3" y="309" width="0.1" height="15.0" fill="rgb(205,124,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.30" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:split_host_and_port:999 (22 samples, 0.03%)</title><rect x="850.1" y="197" width="0.3" height="15.0" fill="rgb(248,118,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="853.05" 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>/tornado/routing.py:__init__:236 (9 samples, 0.01%)</title><rect x="687.8" y="277" width="0.2" height="15.0" fill="rgb(227,86,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.84" 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>/selectors.py:register:412 (64 samples, 0.10%)</title><rect x="1133.1" y="133" width="1.1" height="15.0" fill="rgb(225,210,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1136.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>/selectors.py:select:445 (20 samples, 0.03%)</title><rect x="51.7" y="453" width="0.4" height="15.0" fill="rgb(238,199,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="54.75" y="463.5" font-size="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:register:234 (22 samples, 0.03%)</title><rect x="1129.2" y="117" width="0.4" height="15.0" fill="rgb(219,106,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.22" 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>/tornado/web.py:_execute:1561 (9 samples, 0.01%)</title><rect x="984.0" y="165" width="0.2" height="15.0" fill="rgb(240,54,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="987.03" 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>/tornado/http1connection.py:_read_message:184 (13 samples, 0.02%)</title><rect x="422.7" y="373" width="0.2" height="15.0" fill="rgb(229,137,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.71" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:parse:217 (622 samples, 0.94%)</title><rect x="819.6" y="213" width="11.1" height="15.0" fill="rgb(243,60,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="822.55" 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>/tornado/web.py:finish:2195 (922 samples, 1.40%)</title><rect x="431.1" y="341" width="16.4" height="15.0" fill="rgb(242,141,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="434.07" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:__enter__:51 (6 samples, 0.01%)</title><rect x="839.6" y="229" width="0.1" height="15.0" fill="rgb(241,201,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="842.59" 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/base_events.py:create_task:283 (12 samples, 0.02%)</title><rect x="226.7" y="357" width="0.2" height="15.0" fill="rgb(244,109,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="229.65" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_can_keep_alive:503 (35 samples, 0.05%)</title><rect x="837.6" y="229" width="0.6" height="15.0" fill="rgb(247,202,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="840.57" 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>/tornado/http1connection.py:_read_message:161 (19 samples, 0.03%)</title><rect x="745.3" y="277" width="0.4" height="15.0" fill="rgb(229,162,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="748.34" 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>/tornado/gen.py:handle_yield:1235 (180 samples, 0.27%)</title><rect x="802.6" y="261" width="3.2" height="15.0" fill="rgb(229,131,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.55" y="271.5" font-size="12" 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 (11 samples, 0.02%)</title><rect x="387.4" y="373" width="0.2" height="15.0" fill="rgb(252,69,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="390.38" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:346 (4,870 samples, 7.37%)</title><rect x="988.8" y="181" width="87.0" height="15.0" fill="rgb(254,34,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="991.83" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkho..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:get_event_loop:691 (60 samples, 0.09%)</title><rect x="167.7" y="341" width="1.1" height="15.0" fill="rgb(210,201,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="170.74" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1358 (20 samples, 0.03%)</title><rect x="223.8" y="389" width="0.4" height="15.0" fill="rgb(235,92,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="226.85" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:handle_yield:1221 (62 samples, 0.09%)</title><rect x="504.2" y="373" width="1.1" height="15.0" fill="rgb(251,152,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.17" y="383.5" font-size="12" 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 (16 samples, 0.02%)</title><rect x="1024.2" y="69" width="0.3" height="15.0" fill="rgb(213,63,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1027.20" 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>/tornado/iostream.py:_consume:1106 (19 samples, 0.03%)</title><rect x="729.1" y="197" width="0.3" height="15.0" fill="rgb(253,98,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.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>/tornado/httputil.py:_parse_body:485 (12 samples, 0.02%)</title><rect x="908.4" y="197" width="0.2" height="15.0" fill="rgb(240,105,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.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>/tornado/httputil.py:__init__:360 (42 samples, 0.06%)</title><rect x="843.0" y="213" width="0.8" height="15.0" fill="rgb(240,124,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="846.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>/tornado/gen.py:__init__:1062 (17 samples, 0.03%)</title><rect x="1144.7" y="325" width="0.3" height="15.0" fill="rgb(238,127,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.70" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:add_future:719 (143 samples, 0.22%)</title><rect x="803.2" y="245" width="2.6" height="15.0" fill="rgb(224,27,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="806.21" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:add_handler:74 (6 samples, 0.01%)</title><rect x="732.1" y="213" width="0.1" height="15.0" fill="rgb(231,7,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="735.07" 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>/tornado/httpserver.py:__init__:238 (15 samples, 0.02%)</title><rect x="644.6" y="357" width="0.2" height="15.0" fill="rgb(227,119,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.58" y="367.5" font-size="12" 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_to_self:159 (158 samples, 0.24%)</title><rect x="390.0" y="389" width="2.8" height="15.0" fill="rgb(235,208,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="393.02" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:null_wrapper:299 (19 samples, 0.03%)</title><rect x="563.7" y="421" width="0.4" height="15.0" fill="rgb(217,198,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.74" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/routing.py:headers_received:250 (25 samples, 0.04%)</title><rect x="897.4" y="229" width="0.4" height="15.0" fill="rgb(210,93,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="900.37" 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>/tornado/routing.py:match:525 (97 samples, 0.15%)</title><rect x="882.7" y="133" width="1.7" height="15.0" fill="rgb(229,2,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="885.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>/tornado/gen.py:run:1124 (12 samples, 0.02%)</title><rect x="413.8" y="389" width="0.3" height="15.0" fill="rgb(232,109,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.84" y="399.5" font-size="12" 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 (14 samples, 0.02%)</title><rect x="272.2" y="341" width="0.2" height="15.0" fill="rgb(205,3,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.17" y="351.5" font-size="12" 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 (40 samples, 0.06%)</title><rect x="156.3" y="341" width="0.7" height="15.0" fill="rgb(213,171,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="159.31" y="351.5" font-size="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:get_key:191 (381 samples, 0.58%)</title><rect x="737.5" y="165" width="6.8" height="15.0" fill="rgb(236,49,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="740.54" 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>/tornado/iostream.py:_handle_events:709 (1,438 samples, 2.18%)</title><rect x="564.9" y="405" width="25.7" height="15.0" fill="rgb(213,148,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.92" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:_create_future:187 (169 samples, 0.26%)</title><rect x="966.8" y="165" width="3.0" height="15.0" fill="rgb(254,148,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="969.83" 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>/tornado/httputil.py:__setitem__:224 (8 samples, 0.01%)</title><rect x="937.4" y="117" width="0.1" height="15.0" fill="rgb(228,97,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="940.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>/weakref.py:__getitem__:135 (6 samples, 0.01%)</title><rect x="571.2" y="277" width="0.1" height="15.0" fill="rgb(236,41,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.21" 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>/tornado/gen.py:wrapper:307 (41 samples, 0.06%)</title><rect x="438.3" y="309" width="0.7" height="15.0" fill="rgb(238,204,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="441.27" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:243 (7 samples, 0.01%)</title><rect x="1076.8" y="245" width="0.2" height="15.0" fill="rgb(217,124,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.84" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_add_error_listener:1128 (3,103 samples, 4.70%)</title><rect x="1080.2" y="213" width="55.4" height="15.0" fill="rgb(206,201,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1083.20" y="223.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_soon:599 (6 samples, 0.01%)</title><rect x="507.4" y="325" width="0.1" height="15.0" fill="rgb(243,212,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.35" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:with_timeout:963 (6 samples, 0.01%)</title><rect x="532.1" y="325" width="0.1" height="15.0" fill="rgb(253,116,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.12" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:641 (7 samples, 0.01%)</title><rect x="559.0" y="309" width="0.2" height="15.0" fill="rgb(239,93,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.03" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:copy:601 (16 samples, 0.02%)</title><rect x="368.2" y="437" width="0.3" height="15.0" fill="rgb(243,173,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.20" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:287 (44 samples, 0.07%)</title><rect x="960.2" y="149" width="0.8" height="15.0" fill="rgb(230,215,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="963.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>/tornado/web.py:_execute:1560 (10 samples, 0.02%)</title><rect x="439.8" y="293" width="0.2" height="15.0" fill="rgb(231,218,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.82" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_read_to_buffer:970 (24 samples, 0.04%)</title><rect x="720.1" y="213" width="0.5" height="15.0" fill="rgb(215,161,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="723.15" 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__:105 (16 samples, 0.02%)</title><rect x="350.7" y="325" width="0.3" height="15.0" fill="rgb(237,28,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.68" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:249 (6 samples, 0.01%)</title><rect x="448.4" y="373" width="0.1" height="15.0" fill="rgb(236,78,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.36" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:check_etag_header:1518 (85 samples, 0.13%)</title><rect x="460.1" y="341" width="1.5" height="15.0" fill="rgb(206,192,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.09" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/platform/asyncio.py:add_handler:75 (18 samples, 0.03%)</title><rect x="1086.8" y="181" width="0.3" height="15.0" fill="rgb(210,187,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1089.83" 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>/tornado/http1connection.py:_can_keep_alive:498 (7 samples, 0.01%)</title><rect x="836.2" y="229" width="0.2" height="15.0" fill="rgb(243,11,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="839.23" 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/base_events.py:_run_once:1402 (13 samples, 0.02%)</title><rect x="54.5" y="469" width="0.2" height="15.0" fill="rgb(240,201,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.46" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:_create_future:187 (189 samples, 0.29%)</title><rect x="279.0" y="405" width="3.4" height="15.0" fill="rgb(210,122,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.99" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1119 (32 samples, 0.05%)</title><rect x="413.0" y="389" width="0.5" height="15.0" fill="rgb(253,184,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="415.96" y="399.5" font-size="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:register:237 (14 samples, 0.02%)</title><rect x="744.6" y="149" width="0.2" height="15.0" fill="rgb(211,228,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.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>/functools.py:wrapper:803 (1,615 samples, 2.44%)</title><rect x="222.3" y="405" width="28.9" height="15.0" fill="rgb(227,161,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="225.35" y="415.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>/_collections_abc.py:update:841 (239 samples, 0.36%)</title><rect x="936.4" y="133" width="4.3" height="15.0" fill="rgb(206,92,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="939.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>/tornado/iostream.py:_read_to_buffer_loop:809 (8 samples, 0.01%)</title><rect x="706.9" y="229" width="0.1" height="15.0" fill="rgb(205,12,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.88" 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>/tornado/concurrent.py:future_add_done_callback:649 (9 samples, 0.01%)</title><rect x="786.2" y="245" width="0.2" height="15.0" fill="rgb(205,6,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.21" y="255.5" font-size="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:register:412 (10 samples, 0.02%)</title><rect x="745.0" y="165" width="0.2" height="15.0" fill="rgb(221,174,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.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>/tornado/iostream.py:_find_read_pos:1033 (6 samples, 0.01%)</title><rect x="578.5" y="357" width="0.1" height="15.0" fill="rgb(214,154,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="581.47" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__init__:369 (27 samples, 0.04%)</title><rect x="423.6" y="341" width="0.5" height="15.0" fill="rgb(207,174,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.64" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:current:274 (7 samples, 0.01%)</title><rect x="632.7" y="341" width="0.2" height="15.0" fill="rgb(243,215,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="635.74" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:start_serving:722 (28,912 samples, 43.75%)</title><rect x="656.8" y="357" width="516.2" height="15.0" fill="rgb(213,223,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="659.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/torna..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:245 (33 samples, 0.05%)</title><rect x="542.3" y="309" width="0.6" height="15.0" fill="rgb(237,206,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.26" y="319.5" font-size="12" 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:add_reader:336 (47 samples, 0.07%)</title><rect x="733.8" y="197" width="0.8" height="15.0" fill="rgb(220,151,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.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>/asyncio/events.py:_get_running_loop:644 (16 samples, 0.02%)</title><rect x="1146.2" y="277" width="0.2" height="15.0" fill="rgb(250,146,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1149.16" 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>/tornado/web.py:__init__:192 (13 samples, 0.02%)</title><rect x="540.9" y="245" width="0.2" height="15.0" fill="rgb(246,165,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.85" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1358 (14 samples, 0.02%)</title><rect x="164.7" y="373" width="0.3" height="15.0" fill="rgb(233,15,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.74" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:parse_request_start_line:870 (20 samples, 0.03%)</title><rect x="421.7" y="357" width="0.4" height="15.0" fill="rgb(232,207,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.71" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/routing.py:find_handler:337 (6 samples, 0.01%)</title><rect x="868.6" y="197" width="0.1" height="15.0" fill="rgb(237,48,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="871.55" 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>/tornado/httputil.py:parse_body_arguments:753 (7 samples, 0.01%)</title><rect x="430.9" y="309" width="0.1" height="15.0" fill="rgb(237,154,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.91" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:finish:1033 (275 samples, 0.42%)</title><rect x="455.0" y="357" width="4.9" height="15.0" fill="rgb(232,181,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.98" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:accept:210 (312 samples, 0.47%)</title><rect x="614.5" y="389" width="5.6" height="15.0" fill="rgb(236,197,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="617.51" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:clear:298 (10 samples, 0.02%)</title><rect x="958.2" y="165" width="0.2" height="15.0" fill="rgb(207,150,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.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>/tornado/stack_context.py:wrap:294 (6 samples, 0.01%)</title><rect x="1078.8" y="213" width="0.1" height="15.0" fill="rgb(241,105,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.77" 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>/_weakrefset.py:add:82 (26 samples, 0.04%)</title><rect x="1051.3" y="69" width="0.5" height="15.0" fill="rgb(232,81,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1054.31" 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>/tornado/gen.py:run:1147 (4,478 samples, 6.78%)</title><rect x="416.0" y="389" width="79.9" height="15.0" fill="rgb(209,51,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.96" y="399.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>/tornado/web.py:execute:2215 (3,013 samples, 4.56%)</title><rect x="909.7" y="197" width="53.8" height="15.0" fill="rgb(213,175,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.67" y="207.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>/tornado/web.py:finish:1050 (52 samples, 0.08%)</title><rect x="468.3" y="357" width="0.9" height="15.0" fill="rgb(253,61,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.28" y="367.5" font-size="12" 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 (16 samples, 0.02%)</title><rect x="633.2" y="309" width="0.3" height="15.0" fill="rgb(250,159,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="636.20" y="319.5" font-size="12" 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 (104 samples, 0.16%)</title><rect x="499.7" y="341" width="1.8" height="15.0" fill="rgb(211,113,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.66" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_run_read_callback:896 (25 samples, 0.04%)</title><rect x="729.9" y="213" width="0.5" height="15.0" fill="rgb(248,108,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.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>/tornado/http1connection.py:_read_message:185 (3,231 samples, 4.89%)</title><rect x="840.1" y="245" width="57.7" height="15.0" fill="rgb(244,65,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="843.12" y="255.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>/tornado/ioloop.py:current:288 (7 samples, 0.01%)</title><rect x="634.4" y="341" width="0.1" height="15.0" fill="rgb(234,202,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.40" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:handle_yield:1229 (7 samples, 0.01%)</title><rect x="802.3" y="261" width="0.2" height="15.0" fill="rgb(226,0,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.34" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:handle_yield:1230 (10 samples, 0.02%)</title><rect x="1140.0" y="245" width="0.2" height="15.0" fill="rgb(249,32,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.98" y="255.5" font-size="12" 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 (27 samples, 0.04%)</title><rect x="774.8" y="197" width="0.5" height="15.0" fill="rgb(216,108,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="777.82" 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>/tornado/platform/asyncio.py:remove_handler:113 (311 samples, 0.47%)</title><rect x="570.3" y="325" width="5.5" height="15.0" fill="rgb(236,54,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.26" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:177 (38 samples, 0.06%)</title><rect x="421.6" y="373" width="0.7" height="15.0" fill="rgb(254,21,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.59" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/escape.py:parse_qs_bytes:178 (14 samples, 0.02%)</title><rect x="860.1" y="197" width="0.3" height="15.0" fill="rgb(228,176,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="863.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>/tornado/routing.py:find_handler:338 (69 samples, 0.10%)</title><rect x="428.4" y="277" width="1.3" height="15.0" fill="rgb(241,73,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="431.45" 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>/tornado/stack_context.py:wrap:303 (177 samples, 0.27%)</title><rect x="359.8" y="373" width="3.1" height="15.0" fill="rgb(222,160,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="362.75" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:read_until_regex:357 (154 samples, 0.23%)</title><rect x="528.8" y="325" width="2.8" height="15.0" fill="rgb(242,136,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.83" y="335.5" font-size="12" 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 (24 samples, 0.04%)</title><rect x="1024.1" y="85" width="0.4" height="15.0" fill="rgb(210,155,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1027.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>/tornado/stack_context.py:wrap:287 (37 samples, 0.06%)</title><rect x="782.2" y="213" width="0.6" height="15.0" fill="rgb(243,18,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="785.18" 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>/socket.py:__init__:144 (109 samples, 0.16%)</title><rect x="616.3" y="373" width="2.0" height="15.0" fill="rgb(235,14,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="619.35" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:294 (6 samples, 0.01%)</title><rect x="1170.4" y="277" width="0.1" height="15.0" fill="rgb(249,201,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1173.39" 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>/tornado/platform/asyncio.py:add_handler:77 (772 samples, 1.17%)</title><rect x="1087.1" y="181" width="13.8" height="15.0" fill="rgb(208,92,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1090.15" 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>/urllib/parse.py:parse_qsl:685 (16 samples, 0.02%)</title><rect x="425.0" y="293" width="0.3" height="15.0" fill="rgb(229,111,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="428.03" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:156 (7 samples, 0.01%)</title><rect x="696.3" y="277" width="0.1" height="15.0" fill="rgb(211,217,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="699.29" 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>/tornado/http1connection.py:_on_connection_close:302 (85 samples, 0.13%)</title><rect x="558.2" y="373" width="1.5" height="15.0" fill="rgb(218,65,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.15" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:handle_yield:1235 (142 samples, 0.21%)</title><rect x="1140.3" y="245" width="2.5" height="15.0" fill="rgb(254,193,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1143.31" y="255.5" font-size="12" 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 (34 samples, 0.05%)</title><rect x="363.1" y="437" width="0.6" height="15.0" fill="rgb(216,225,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="366.11" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/tcpserver.py:_handle_connection:257 (58 samples, 0.09%)</title><rect x="626.5" y="389" width="1.0" height="15.0" fill="rgb(218,196,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="629.49" y="399.5" font-size="12" 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 (36 samples, 0.05%)</title><rect x="380.3" y="405" width="0.7" height="15.0" fill="rgb(218,212,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.32" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:write_headers:364 (6 samples, 0.01%)</title><rect x="473.7" y="325" width="0.1" height="15.0" fill="rgb(238,200,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.71" y="335.5" font-size="12" 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 (14 samples, 0.02%)</title><rect x="225.2" y="373" width="0.3" height="15.0" fill="rgb(209,197,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="228.24" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_server_request_loop:732 (918 samples, 1.39%)</title><rect x="668.3" y="325" width="16.4" height="15.0" fill="rgb(236,51,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.35" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_add_error_listener:1126 (6 samples, 0.01%)</title><rect x="683.5" y="261" width="0.1" height="15.0" fill="rgb(205,14,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="686.49" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:future_set_exc_info:635 (10 samples, 0.02%)</title><rect x="503.2" y="373" width="0.2" height="15.0" fill="rgb(230,181,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.23" y="383.5" font-size="12" 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 (28 samples, 0.04%)</title><rect x="691.7" y="245" width="0.5" height="15.0" fill="rgb(234,208,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.70" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httpserver.py:handle_stream:189 (12 samples, 0.02%)</title><rect x="643.5" y="373" width="0.2" height="15.0" fill="rgb(251,83,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.49" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:wrapper:765 (30 samples, 0.05%)</title><rect x="559.9" y="405" width="0.5" height="15.0" fill="rgb(245,89,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.87" y="415.5" font-size="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 (26 samples, 0.04%)</title><rect x="923.8" y="133" width="0.4" height="15.0" fill="rgb(241,40,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.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>/tornado/iostream.py:_read_to_buffer:944 (316 samples, 0.48%)</title><rect x="707.3" y="213" width="5.7" height="15.0" fill="rgb(214,64,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="710.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>/tornado/web.py:finish:1052 (997 samples, 1.51%)</title><rect x="469.2" y="357" width="17.8" height="15.0" fill="rgb(215,105,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.21" y="367.5" font-size="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 (9 samples, 0.01%)</title><rect x="422.1" y="341" width="0.2" height="15.0" fill="rgb(254,146,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.11" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:__init__:1078 (42 samples, 0.06%)</title><rect x="541.5" y="229" width="0.7" height="15.0" fill="rgb(253,164,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.48" 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>/abc.py:__instancecheck__:184 (27 samples, 0.04%)</title><rect x="977.2" y="165" width="0.5" height="15.0" fill="rgb(251,89,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.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>/tornado/iostream.py:__init__:285 (9 samples, 0.01%)</title><rect x="642.1" y="357" width="0.2" height="15.0" fill="rgb(213,39,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.10" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1361 (2,195 samples, 3.32%)</title><rect x="1020.8" y="117" width="39.2" height="15.0" fill="rgb(240,22,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1023.83" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/ho..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:future_add_done_callback:650 (481 samples, 0.73%)</title><rect x="786.4" y="245" width="8.6" height="15.0" fill="rgb(242,196,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.38" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_server_request_loop:735 (6 samples, 0.01%)</title><rect x="451.5" y="373" width="0.1" height="15.0" fill="rgb(235,115,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.53" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:__init__:48 (6 samples, 0.01%)</title><rect x="903.2" y="229" width="0.1" height="15.0" fill="rgb(205,150,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="906.17" 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:_ensure_fd_no_transport:251 (38 samples, 0.06%)</title><rect x="733.9" y="181" width="0.7" height="15.0" fill="rgb(213,0,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.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>/tornado/iostream.py:_consume:1097 (13 samples, 0.02%)</title><rect x="728.1" y="197" width="0.2" height="15.0" fill="rgb(252,182,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="731.06" 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__:113 (13 samples, 0.02%)</title><rect x="366.7" y="405" width="0.2" height="15.0" fill="rgb(251,164,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="369.68" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:compute_etag:1485 (36 samples, 0.05%)</title><rect x="455.5" y="325" width="0.6" height="15.0" fill="rgb(252,74,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="458.48" y="335.5" font-size="12" 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,357 samples, 2.05%)</title><rect x="226.9" y="357" width="24.3" height="15.0" fill="rgb(227,184,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="229.94" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:set_close_callback:605 (12 samples, 0.02%)</title><rect x="533.9" y="309" width="0.3" height="15.0" fill="rgb(230,124,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.94" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1177 (391 samples, 0.59%)</title><rect x="503.4" y="389" width="7.0" height="15.0" fill="rgb(219,37,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.41" y="399.5" font-size="12" 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 (10 samples, 0.02%)</title><rect x="251.0" y="325" width="0.1" height="15.0" fill="rgb(250,28,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.95" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:287 (15 samples, 0.02%)</title><rect x="732.5" y="197" width="0.3" height="15.0" fill="rgb(206,134,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="735.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>/tornado/http1connection.py:_clear_callbacks:272 (6 samples, 0.01%)</title><rect x="517.2" y="357" width="0.1" height="15.0" fill="rgb(232,206,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.19" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:_intenum_converter:105 (24 samples, 0.04%)</title><rect x="614.1" y="357" width="0.4" height="15.0" fill="rgb(210,109,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="617.08" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_add_error_listener:1126 (23 samples, 0.03%)</title><rect x="1079.7" y="213" width="0.4" height="15.0" fill="rgb(219,67,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1082.68" 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>/tornado/routing.py:find_handler:338 (171 samples, 0.26%)</title><rect x="426.6" y="325" width="3.1" height="15.0" fill="rgb(214,226,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="429.62" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:compute_etag:1486 (10 samples, 0.02%)</title><rect x="456.1" y="325" width="0.2" height="15.0" fill="rgb(250,3,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="459.12" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_body:537 (6 samples, 0.01%)</title><rect x="430.0" y="357" width="0.1" height="15.0" fill="rgb(228,38,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.00" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:read_until_regex:354 (52 samples, 0.08%)</title><rect x="527.9" y="325" width="0.9" height="15.0" fill="rgb(230,82,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.89" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_try_inline_read:913 (27 samples, 0.04%)</title><rect x="531.0" y="309" width="0.5" height="15.0" fill="rgb(228,47,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="534.05" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_maybe_run_close_callback:646 (15 samples, 0.02%)</title><rect x="450.2" y="309" width="0.3" height="15.0" fill="rgb(213,94,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.21" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/enum.py:_missing_:546 (168 samples, 0.25%)</title><rect x="610.9" y="309" width="3.0" height="15.0" fill="rgb(216,72,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="613.88" y="319.5" font-size="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 (23 samples, 0.03%)</title><rect x="855.2" y="149" width="0.4" height="15.0" fill="rgb(223,110,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="858.16" 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__:107 (7 samples, 0.01%)</title><rect x="500.7" y="325" width="0.1" height="15.0" fill="rgb(233,42,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="503.71" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:__init__:2174 (24 samples, 0.04%)</title><rect x="894.7" y="101" width="0.5" height="15.0" fill="rgb(237,102,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="897.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>/asyncio/base_events.py:_run_once:1432 (60,882 samples, 92.13%)</title><rect x="102.8" y="469" width="1087.2" height="15.0" fill="rgb(243,129,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="105.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/asyncio/base_events.py:_run_once:1432</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_add_io_state:1158 (753 samples, 1.14%)</title><rect x="731.9" y="229" width="13.4" height="15.0" fill="rgb(233,31,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.88" 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>/tornado/httputil.py:__init__:377 (451 samples, 0.68%)</title><rect x="852.3" y="213" width="8.1" height="15.0" fill="rgb(247,223,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.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>/selectors.py:unregister:421 (14 samples, 0.02%)</title><rect x="575.0" y="277" width="0.2" height="15.0" fill="rgb(231,195,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.99" 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>/tornado/web.py:execute:2228 (6,212 samples, 9.40%)</title><rect x="965.5" y="197" width="110.9" height="15.0" fill="rgb(242,179,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.51" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/dkhodak..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:327 (16 samples, 0.02%)</title><rect x="1143.8" y="341" width="0.3" height="15.0" fill="rgb(235,56,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1146.84" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:close:636 (23 samples, 0.03%)</title><rect x="576.9" y="341" width="0.4" height="15.0" fill="rgb(227,165,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.87" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httpserver.py:start_request:198 (125 samples, 0.19%)</title><rect x="685.8" y="309" width="2.2" height="15.0" fill="rgb(244,3,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="688.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:_contains_yieldpoint:716 (46 samples, 0.07%)</title><rect x="160.5" y="405" width="0.9" height="15.0" fill="rgb(224,215,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.53" y="415.5" font-size="12" 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 (10 samples, 0.02%)</title><rect x="1056.2" y="69" width="0.2" height="15.0" fill="rgb(229,114,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1059.22" 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>/_weakrefset.py:__contains__:75 (6 samples, 0.01%)</title><rect x="924.1" y="117" width="0.1" height="15.0" fill="rgb(251,124,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="927.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/events.py:__init__:171 (6 samples, 0.01%)</title><rect x="351.5" y="341" width="0.1" height="15.0" fill="rgb(236,5,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="354.54" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:347 (20 samples, 0.03%)</title><rect x="1172.6" y="341" width="0.4" height="15.0" fill="rgb(216,30,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.63" y="351.5" font-size="12" 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 (15 samples, 0.02%)</title><rect x="968.5" y="133" width="0.2" height="15.0" fill="rgb(216,160,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="971.46" 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>/tornado/web.py:get_target_delegate:1883 (36 samples, 0.05%)</title><rect x="887.2" y="133" width="0.7" height="15.0" fill="rgb(239,184,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="890.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>/copy.py:deepcopy:150 (8 samples, 0.01%)</title><rect x="425.7" y="325" width="0.2" height="15.0" fill="rgb(249,174,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="428.75" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_find_read_pos:1007 (14 samples, 0.02%)</title><rect x="529.3" y="293" width="0.3" height="15.0" fill="rgb(231,172,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.33" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:set_header:342 (146 samples, 0.22%)</title><rect x="465.5" y="341" width="2.6" height="15.0" fill="rgb(253,51,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="468.50" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:__init__:108 (11 samples, 0.02%)</title><rect x="669.5" y="309" width="0.1" height="15.0" fill="rgb(245,86,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.45" y="319.5" font-size="12" 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 (7 samples, 0.01%)</title><rect x="501.3" y="309" width="0.2" height="15.0" fill="rgb(251,198,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="504.33" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:<listcomp>:2216 (6 samples, 0.01%)</title><rect x="437.4" y="309" width="0.1" height="15.0" fill="rgb(211,174,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.36" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:handle_yield:1235 (34 samples, 0.05%)</title><rect x="549.6" y="389" width="0.6" height="15.0" fill="rgb(242,138,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.58" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:214 (62 samples, 0.09%)</title><rect x="898.9" y="245" width="1.1" height="15.0" fill="rgb(212,74,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.85" y="255.5" font-size="12" 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 (15 samples, 0.02%)</title><rect x="51.0" y="469" width="0.2" height="15.0" fill="rgb(236,203,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.98" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>./tornado_server.py:<module>:82 (63,828 samples, 96.59%)</title><rect x="50.3" y="517" width="1139.7" height="15.0" fill="rgb(251,120,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.27" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >./tornado_server.py:<module>:82</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/asyncio/events.py:_get_running_loop:644 (7 samples, 0.01%)</title><rect x="679.3" y="277" width="0.1" height="15.0" fill="rgb(241,181,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.27" 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>/tornado/platform/asyncio.py:start:132 (63,828 samples, 96.59%)</title><rect x="50.3" y="501" width="1139.7" height="15.0" fill="rgb(228,19,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.27" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/tornado/platform/asyncio.py:start:132</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:finish:2194 (184 samples, 0.28%)</title><rect x="905.4" y="213" width="3.3" height="15.0" fill="rgb(244,202,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="908.37" 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>/tornado/http1connection.py:_read_message:214 (9 samples, 0.01%)</title><rect x="429.8" y="373" width="0.2" height="15.0" fill="rgb(211,125,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.80" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/socket.py:type:439 (918 samples, 1.39%)</title><rect x="598.1" y="373" width="16.4" height="15.0" fill="rgb(213,117,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="601.12" y="383.5" font-size="12" 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 (10 samples, 0.02%)</title><rect x="536.2" y="261" width="0.2" height="15.0" fill="rgb(249,170,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="539.19" y="271.5" font-size="12" 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 (6 samples, 0.01%)</title><rect x="252.4" y="373" width="0.1" height="15.0" fill="rgb(207,100,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.36" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:copy:593 (11 samples, 0.02%)</title><rect x="367.7" y="437" width="0.2" height="15.0" fill="rgb(234,186,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="370.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__getitem__:229 (9 samples, 0.01%)</title><rect x="837.1" y="197" width="0.2" height="15.0" fill="rgb(238,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="840.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>/tornado/iostream.py:__init__:269 (9 samples, 0.01%)</title><rect x="640.6" y="357" width="0.2" height="15.0" fill="rgb(230,58,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.63" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:convert_yielded:1352 (6 samples, 0.01%)</title><rect x="164.3" y="373" width="0.1" height="15.0" fill="rgb(211,155,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.31" y="383.5" font-size="12" 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.02%)</title><rect x="779.2" y="181" width="0.2" height="15.0" fill="rgb(210,28,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.22" 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>/tornado/gen.py:wrapper:347 (27 samples, 0.04%)</title><rect x="1143.1" y="293" width="0.5" height="15.0" fill="rgb(223,180,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1146.13" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:current:288 (12 samples, 0.02%)</title><rect x="1147.5" y="309" width="0.2" height="15.0" fill="rgb(233,221,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1150.52" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:time:591 (8 samples, 0.01%)</title><rect x="261.8" y="389" width="0.1" height="15.0" fill="rgb(250,123,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.79" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:add_future:717 (82 samples, 0.12%)</title><rect x="1140.8" y="229" width="1.5" height="15.0" fill="rgb(238,64,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1143.79" 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>/tornado/gen.py:__init__:1067 (6 samples, 0.01%)</title><rect x="1145.4" y="325" width="0.1" height="15.0" fill="rgb(252,32,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1148.36" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:__init__:376 (10 samples, 0.02%)</title><rect x="424.3" y="341" width="0.2" height="15.0" fill="rgb(236,210,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.30" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_find_read_pos:1007 (7 samples, 0.01%)</title><rect x="704.6" y="229" width="0.1" height="15.0" fill="rgb(217,150,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.61" 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>/enum.py:__new__:525 (36 samples, 0.05%)</title><rect x="608.8" y="325" width="0.6" height="15.0" fill="rgb(226,27,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="611.78" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/inspect.py:isclass:79 (22 samples, 0.03%)</title><rect x="870.2" y="165" width="0.4" height="15.0" fill="rgb(232,65,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="873.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>/tornado/routing.py:get_target_delegate:355 (16 samples, 0.02%)</title><rect x="876.3" y="165" width="0.3" height="15.0" fill="rgb(231,149,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="879.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>/tornado/iostream.py:set_close_callback:605 (96 samples, 0.15%)</title><rect x="681.2" y="277" width="1.7" height="15.0" fill="rgb(230,229,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="684.17" 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>/tornado/iostream.py:_read_to_buffer_loop:786 (10 samples, 0.02%)</title><rect x="706.2" y="229" width="0.2" height="15.0" fill="rgb(230,161,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.20" 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>/tornado/concurrent.py:future_add_done_callback:652 (7 samples, 0.01%)</title><rect x="254.0" y="389" width="0.1" height="15.0" fill="rgb(253,18,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.01" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:__init__:255 (35 samples, 0.05%)</title><rect x="636.2" y="357" width="0.6" height="15.0" fill="rgb(240,55,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.20" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:add_future:719 (101 samples, 0.15%)</title><rect x="445.6" y="261" width="1.8" height="15.0" fill="rgb(216,105,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="448.59" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:finish:2193 (24 samples, 0.04%)</title><rect x="904.9" y="213" width="0.5" height="15.0" fill="rgb(253,214,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="907.94" 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>/tornado/gen.py:handle_yield:1234 (8 samples, 0.01%)</title><rect x="1140.2" y="245" width="0.1" height="15.0" fill="rgb(241,148,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1143.16" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/enum.py:__new__:519 (15 samples, 0.02%)</title><rect x="608.5" y="325" width="0.3" height="15.0" fill="rgb(237,178,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="611.51" y="335.5" font-size="12" 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:_add_reader:262 (39 samples, 0.06%)</title><rect x="1108.2" y="149" width="0.7" height="15.0" fill="rgb(231,77,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.16" 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 (14 samples, 0.02%)</title><rect x="525.6" y="325" width="0.3" height="15.0" fill="rgb(244,198,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.64" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:log_request:2160 (43 samples, 0.07%)</title><rect x="492.6" y="325" width="0.7" height="15.0" fill="rgb(231,118,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.57" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:parse_body_arguments:766 (10 samples, 0.02%)</title><rect x="908.2" y="181" width="0.1" height="15.0" fill="rgb(218,7,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.16" 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>/tornado/gen.py:with_timeout:968 (13 samples, 0.02%)</title><rect x="762.3" y="261" width="0.3" height="15.0" fill="rgb(214,73,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="765.34" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/copy.py:_keep_alive:263 (6 samples, 0.01%)</title><rect x="426.0" y="309" width="0.1" height="15.0" fill="rgb(212,104,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="428.98" y="319.5" font-size="12" 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 (137 samples, 0.21%)</title><rect x="409.5" y="373" width="2.5" height="15.0" fill="rgb(241,101,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="412.52" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_parse_headers:533 (16 samples, 0.02%)</title><rect x="539.7" y="293" width="0.3" height="15.0" fill="rgb(209,24,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.73" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:318 (61 samples, 0.09%)</title><rect x="524.8" y="357" width="1.1" height="15.0" fill="rgb(240,169,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.80" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:_create_future:189 (8 samples, 0.01%)</title><rect x="524.4" y="341" width="0.1" height="15.0" fill="rgb(217,134,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.39" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:303 (86 samples, 0.13%)</title><rect x="784.1" y="213" width="1.5" height="15.0" fill="rgb(206,64,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.11" 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>/copy.py:_deepcopy_dict:239 (12 samples, 0.02%)</title><rect x="862.8" y="181" width="0.3" height="15.0" fill="rgb(230,34,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="865.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>/tornado/gen.py:with_timeout:968 (29 samples, 0.04%)</title><rect x="255.0" y="421" width="0.5" height="15.0" fill="rgb(246,195,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.99" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:wrapper:297 (36 samples, 0.05%)</title><rect x="437.6" y="309" width="0.7" height="15.0" fill="rgb(208,30,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.62" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httputil.py:parse:214 (218 samples, 0.33%)</title><rect x="812.7" y="213" width="3.9" height="15.0" fill="rgb(240,48,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.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>/tornado/escape.py:utf8:199 (8 samples, 0.01%)</title><rect x="463.9" y="325" width="0.1" height="15.0" fill="rgb(243,219,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="466.85" y="335.5" font-size="12" 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:add_reader:337 (18 samples, 0.03%)</title><rect x="542.5" y="229" width="0.3" height="15.0" fill="rgb(236,178,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.51" 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>/tornado/iostream.py:_maybe_run_close_callback:646 (18 samples, 0.03%)</title><rect x="535.0" y="277" width="0.4" height="15.0" fill="rgb(216,191,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="538.03" 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>/tornado/gen.py:run:1181 (10 samples, 0.02%)</title><rect x="1142.9" y="261" width="0.2" height="15.0" fill="rgb(239,174,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.95" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/weakref.py:__getitem__:394 (24 samples, 0.04%)</title><rect x="163.9" y="357" width="0.4" height="15.0" fill="rgb(241,44,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.85" y="367.5" font-size="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 (10 samples, 0.02%)</title><rect x="493.8" y="293" width="0.2" height="15.0" fill="rgb(225,107,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.82" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:wrapper:803 (142 samples, 0.21%)</title><rect x="442.3" y="261" width="2.5" height="15.0" fill="rgb(242,107,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.28" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/re.py:_compile:289 (40 samples, 0.06%)</title><rect x="833.4" y="197" width="0.7" height="15.0" fill="rgb(209,51,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="836.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>/tornado/gen.py:run:1129 (7 samples, 0.01%)</title><rect x="806.5" y="261" width="0.1" height="15.0" fill="rgb(252,84,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.50" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:296 (25 samples, 0.04%)</title><rect x="158.0" y="357" width="0.4" height="15.0" fill="rgb(250,17,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.96" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/concurrent.py:is_future:380 (7 samples, 0.01%)</title><rect x="1140.7" y="213" width="0.1" height="15.0" fill="rgb(215,199,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1143.66" 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>/tornado/http1connection.py:write_headers:409 (13 samples, 0.02%)</title><rect x="485.3" y="325" width="0.2" height="15.0" fill="rgb(210,8,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.30" y="335.5" font-size="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:get_map:273 (9 samples, 0.01%)</title><rect x="572.3" y="261" width="0.2" height="15.0" fill="rgb(244,139,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.35" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_read_to_buffer:945 (6 samples, 0.01%)</title><rect x="531.3" y="277" width="0.1" height="15.0" fill="rgb(208,170,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="534.26" 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>/tornado/gen.py:run:1156 (9 samples, 0.01%)</title><rect x="496.4" y="389" width="0.2" height="15.0" fill="rgb(228,143,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.44" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_add_io_state:1158 (2,887 samples, 4.37%)</title><rect x="1084.0" y="197" width="51.6" height="15.0" fill="rgb(206,160,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1087.02" y="207.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>/tornado/stack_context.py:null_wrapper:298 (60 samples, 0.09%)</title><rect x="400.0" y="421" width="1.0" height="15.0" fill="rgb(216,223,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.96" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:sleep:1011 (220 samples, 0.33%)</title><rect x="278.8" y="421" width="3.9" height="15.0" fill="rgb(240,60,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.81" y="431.5" font-size="12" 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_to_self:159 (28 samples, 0.04%)</title><rect x="587.3" y="309" width="0.5" height="15.0" fill="rgb(240,187,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.33" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:add_future:719 (11 samples, 0.02%)</title><rect x="550.0" y="373" width="0.2" height="15.0" fill="rgb(239,64,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.99" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_run_callback:781 (351 samples, 0.53%)</title><rect x="583.2" y="357" width="6.3" height="15.0" fill="rgb(244,136,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="586.21" y="367.5" font-size="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 (6 samples, 0.01%)</title><rect x="261.2" y="373" width="0.1" height="15.0" fill="rgb(206,157,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.19" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:237 (27 samples, 0.04%)</title><rect x="902.8" y="245" width="0.5" height="15.0" fill="rgb(240,65,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="905.80" y="255.5" font-size="12" 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 (8 samples, 0.01%)</title><rect x="486.7" y="277" width="0.1" height="15.0" fill="rgb(227,191,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.67" 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>/tornado/concurrent.py:chain_future:602 (9 samples, 0.01%)</title><rect x="253.8" y="405" width="0.1" height="15.0" fill="rgb(219,140,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.76" y="415.5" font-size="12" 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 (9 samples, 0.01%)</title><rect x="443.3" y="229" width="0.1" height="15.0" fill="rgb(251,214,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.28" 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>/tornado/platform/asyncio.py:add_callback:154 (301 samples, 0.46%)</title><rect x="583.9" y="341" width="5.4" height="15.0" fill="rgb(226,157,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="586.94" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:_convert_header_value:373 (8 samples, 0.01%)</title><rect x="466.5" y="325" width="0.2" height="15.0" fill="rgb(217,182,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.51" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:_deactivate_stack_context:1253 (6 samples, 0.01%)</title><rect x="502.4" y="373" width="0.1" height="15.0" fill="rgb(235,82,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.44" y="383.5" font-size="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:1548 (21 samples, 0.03%)</title><rect x="494.0" y="293" width="0.4" height="15.0" fill="rgb(254,20,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.00" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:sleep:1011 (99 samples, 0.15%)</title><rect x="130.1" y="405" width="1.8" height="15.0" fill="rgb(248,16,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="133.10" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:current:282 (22 samples, 0.03%)</title><rect x="132.1" y="389" width="0.4" height="15.0" fill="rgb(243,39,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="135.08" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httpserver.py:__init__:258 (6 samples, 0.01%)</title><rect x="652.4" y="357" width="0.1" height="15.0" fill="rgb(239,31,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="655.40" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/httpserver.py:__init__:255 (18 samples, 0.03%)</title><rect x="652.1" y="357" width="0.3" height="15.0" fill="rgb(238,119,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="655.08" y="367.5" font-size="12" 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_threadsafe:621 (33 samples, 0.05%)</title><rect x="385.5" y="405" width="0.6" height="15.0" fill="rgb(219,6,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="388.54" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:_run_callback:757 (11 samples, 0.02%)</title><rect x="394.8" y="437" width="0.2" height="15.0" fill="rgb(209,192,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="397.82" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:_try_inline_read:911 (37 samples, 0.06%)</title><rect x="705.1" y="245" width="0.7" height="15.0" fill="rgb(222,145,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="708.13" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/iostream.py:read_until_regex:367 (14 samples, 0.02%)</title><rect x="531.7" y="325" width="0.2" height="15.0" fill="rgb(238,126,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="534.69" y="335.5" font-size="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:__getitem__:73 (23 samples, 0.03%)</title><rect x="737.1" y="149" width="0.4" height="15.0" fill="rgb(252,22,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="740.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>/abc.py:__instancecheck__:184 (45 samples, 0.07%)</title><rect x="467.0" y="309" width="0.8" height="15.0" fill="rgb(224,179,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.01" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/stack_context.py:wrap:287 (44 samples, 0.07%)</title><rect x="1072.1" y="117" width="0.8" height="15.0" fill="rgb(216,209,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.13" 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>/tornado/gen.py:with_timeout:966 (74 samples, 0.11%)</title><rect x="761.0" y="261" width="1.3" height="15.0" fill="rgb(234,15,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.02" y="271.5" font-size="12" 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 (19 samples, 0.03%)</title><rect x="132.1" y="373" width="0.4" height="15.0" fill="rgb(252,165,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="135.14" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:finish:1045 (10 samples, 0.02%)</title><rect x="468.1" y="357" width="0.2" height="15.0" fill="rgb(225,196,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.10" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/http1connection.py:_read_message:185 (20 samples, 0.03%)</title><rect x="540.2" y="309" width="0.4" height="15.0" fill="rgb(215,141,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.21" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:__init__:193 (231 samples, 0.35%)</title><rect x="958.9" y="181" width="4.2" height="15.0" fill="rgb(251,207,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.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>/tornado/httputil.py:__getitem__:229 (12 samples, 0.02%)</title><rect x="464.6" y="325" width="0.2" height="15.0" fill="rgb(251,226,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="467.57" y="335.5" font-size="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 (36 samples, 0.05%)</title><rect x="244.3" y="341" width="0.6" height="15.0" fill="rgb(213,115,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.26" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/ioloop.py:add_future:717 (576 samples, 0.87%)</title><rect x="1174.5" y="341" width="10.3" height="15.0" fill="rgb(240,200,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1177.48" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/gen.py:run:1125 (6 samples, 0.01%)</title><rect x="511.0" y="405" width="0.1" height="15.0" fill="rgb(247,51,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="513.96" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/_collections_abc.py:get:660 (6 samples, 0.01%)</title><rect x="429.9" y="357" width="0.1" height="15.0" fill="rgb(248,49,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.86" y="367.5" font-size="12" 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 (27 samples, 0.04%)</title><rect x="523.9" y="325" width="0.5" height="15.0" fill="rgb(226,178,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.91" y="335.5" font-size="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 (39 samples, 0.06%)</title><rect x="695.2" y="277" width="0.7" height="15.0" fill="rgb(224,59,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="698.18" 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>/tornado/routing.py:finish:256 (953 samples, 1.44%)</title><rect x="430.5" y="357" width="17.0" height="15.0" fill="rgb(237,69,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.52" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/functools.py:dispatch:778 (26 samples, 0.04%)</title><rect x="1150.0" y="277" width="0.4" height="15.0" fill="rgb(220,153,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.97" 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/events.py:__init__:108 (6 samples, 0.01%)</title><rect x="778.2" y="165" width="0.1" height="15.0" fill="rgb(222,199,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.16" 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>/weakref.py:__getitem__:394 (13 samples, 0.02%)</title><rect x="504.9" y="325" width="0.2" height="15.0" fill="rgb(238,114,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.89" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>/tornado/web.py:clear:291 (10 samples, 0.02%)</title><rect x="919.2" y="165" width="0.2" height="15.0" fill="rgb(219,163,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="922.21" 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 (23 samples, 0.03%)</title><rect x="942.5" y="117" width="0.4" height="15.0" fill="rgb(208,140,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.53" y="127.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