Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sentrivana/bb77ca3211431d05625aff3f41d1864c to your computer and use it in GitHub Desktop.
Save sentrivana/bb77ca3211431d05625aff3f41d1864c to your computer and use it in GitHub Desktop.
No DSN, no tracing, no errors
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="794" onload="init(evt)" viewBox="0 0 1200 794" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = true;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
if (!isEdge) {
svg.removeAttribute("viewBox");
}
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg:orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *\$/.test(txt) || t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="794" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy record -o profile.svg --subprocesses -- ./manage.py runserver</text><text id="details" x="10" y="40.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1190" y="24.00">Search</text><text id="matched" x="1190" y="783.00"> </text><svg id="frames" x="10" width="1180" total_samples="12590"><g><title>&lt;module&gt; (manage.py:50) (5,554 samples, 44.11%)</title><rect x="0.0000%" y="84" width="44.1144%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="5554"/><text x="0.2500%" y="94.50">&lt;module&gt; (manage.py:50)</text></g><g><title>main (manage.py:18) (5,554 samples, 44.11%)</title><rect x="0.0000%" y="100" width="44.1144%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="5554"/><text x="0.2500%" y="110.50">main (manage.py:18)</text></g><g><title>execute_from_command_line (django/core/management/__init__.py:442) (5,554 samples, 44.11%)</title><rect x="0.0000%" y="116" width="44.1144%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="5554"/><text x="0.2500%" y="126.50">execute_from_command_line (django/core/management/__init__.py:442)</text></g><g><title>execute (django/core/management/__init__.py:436) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="132" width="44.0270%" height="15" fill="rgb(248,212,6)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="142.50">execute (django/core/management/__init__.py:436)</text></g><g><title>run_from_argv (django/core/management/base.py:412) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="148" width="44.0270%" height="15" fill="rgb(208,68,35)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="158.50">run_from_argv (django/core/management/base.py:412)</text></g><g><title>execute (django/core/management/commands/runserver.py:74) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="164" width="44.0270%" height="15" fill="rgb(232,128,0)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="174.50">execute (django/core/management/commands/runserver.py:74)</text></g><g><title>execute (django/core/management/base.py:458) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="180" width="44.0270%" height="15" fill="rgb(207,160,47)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="190.50">execute (django/core/management/base.py:458)</text></g><g><title>handle (django/core/management/commands/runserver.py:111) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="196" width="44.0270%" height="15" fill="rgb(228,23,34)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="206.50">handle (django/core/management/commands/runserver.py:111)</text></g><g><title>run (django/core/management/commands/runserver.py:118) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="212" width="44.0270%" height="15" fill="rgb(218,30,26)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="222.50">run (django/core/management/commands/runserver.py:118)</text></g><g><title>run_with_reloader (django/utils/autoreload.py:673) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="228" width="44.0270%" height="15" fill="rgb(220,122,19)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="238.50">run_with_reloader (django/utils/autoreload.py:673)</text></g><g><title>restart_with_reloader (django/utils/autoreload.py:274) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="244" width="44.0270%" height="15" fill="rgb(250,228,42)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="254.50">restart_with_reloader (django/utils/autoreload.py:274)</text></g><g><title>run (subprocess.py:550) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="260" width="44.0270%" height="15" fill="rgb(240,193,28)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="270.50">run (subprocess.py:550)</text></g><g><title>sentry_patched_popen_communicate (sentry_sdk/integrations/stdlib.py:248) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="276" width="44.0270%" height="15" fill="rgb(216,20,37)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="286.50">sentry_patched_popen_communicate (sentry_sdk/integrations/stdlib.py:248)</text></g><g><title>communicate (subprocess.py:1199) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="292" width="44.0270%" height="15" fill="rgb(206,188,39)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="302.50">communicate (subprocess.py:1199)</text></g><g><title>sentry_patched_popen_wait (sentry_sdk/integrations/stdlib.py:233) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="308" width="44.0270%" height="15" fill="rgb(217,207,13)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="318.50">sentry_patched_popen_wait (sentry_sdk/integrations/stdlib.py:233)</text></g><g><title>wait (subprocess.py:1262) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="324" width="44.0270%" height="15" fill="rgb(231,73,38)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="334.50">wait (subprocess.py:1262)</text></g><g><title>_wait (subprocess.py:2013) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="340" width="44.0270%" height="15" fill="rgb(225,20,46)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="350.50">_wait (subprocess.py:2013)</text></g><g><title>_try_wait (subprocess.py:1971) (5,543 samples, 44.03%)</title><rect x="0.0874%" y="356" width="44.0270%" height="15" fill="rgb(210,31,41)" fg:x="11" fg:w="5543"/><text x="0.3374%" y="366.50">_try_wait (subprocess.py:1971)</text></g><g><title>watched_files (django/utils/autoreload.py:304) (28 samples, 0.22%)</title><rect x="45.0119%" y="340" width="0.2224%" height="15" fill="rgb(221,200,47)" fg:x="5667" fg:w="28"/><text x="45.2619%" y="350.50"></text></g><g><title>iter_all_python_module_files (django/utils/autoreload.py:120) (20 samples, 0.16%)</title><rect x="45.0755%" y="356" width="0.1589%" height="15" fill="rgb(226,26,5)" fg:x="5675" fg:w="20"/><text x="45.3255%" y="366.50"></text></g><g><title>iter_modules_and_files (django/utils/autoreload.py:168) (17 samples, 0.14%)</title><rect x="45.0993%" y="372" width="0.1350%" height="15" fill="rgb(249,33,26)" fg:x="5678" fg:w="17"/><text x="45.3493%" y="382.50"></text></g><g><title>resolve (pathlib.py:993) (15 samples, 0.12%)</title><rect x="45.1152%" y="388" width="0.1191%" height="15" fill="rgb(235,183,28)" fg:x="5680" fg:w="15"/><text x="45.3652%" y="398.50"></text></g><g><title>realpath (&lt;frozen posixpath&gt;:416) (14 samples, 0.11%)</title><rect x="45.1231%" y="404" width="0.1112%" height="15" fill="rgb(221,5,38)" fg:x="5681" fg:w="14"/><text x="45.3731%" y="414.50"></text></g><g><title>snapshot_files (django/utils/autoreload.py:411) (29 samples, 0.23%)</title><rect x="45.0119%" y="324" width="0.2303%" height="15" fill="rgb(247,18,42)" fg:x="5667" fg:w="29"/><text x="45.2619%" y="334.50"></text></g><g><title>tick (django/utils/autoreload.py:390) (71 samples, 0.56%)</title><rect x="45.0119%" y="308" width="0.5639%" height="15" fill="rgb(241,131,45)" fg:x="5667" fg:w="71"/><text x="45.2619%" y="318.50"></text></g><g><title>snapshot_files (django/utils/autoreload.py:415) (41 samples, 0.33%)</title><rect x="45.2502%" y="324" width="0.3257%" height="15" fill="rgb(249,31,29)" fg:x="5697" fg:w="41"/><text x="45.5002%" y="334.50"></text></g><g><title>stat (pathlib.py:1013) (40 samples, 0.32%)</title><rect x="45.2581%" y="340" width="0.3177%" height="15" fill="rgb(225,111,53)" fg:x="5698" fg:w="40"/><text x="45.5081%" y="350.50"></text></g><g><title>&lt;module&gt; (manage.py:50) (5,462 samples, 43.38%)</title><rect x="44.9245%" y="100" width="43.3836%" height="15" fill="rgb(238,160,17)" fg:x="5656" fg:w="5462"/><text x="45.1745%" y="110.50">&lt;module&gt; (manage.py:50)</text></g><g><title>main (manage.py:18) (5,462 samples, 43.38%)</title><rect x="44.9245%" y="116" width="43.3836%" height="15" fill="rgb(214,148,48)" fg:x="5656" fg:w="5462"/><text x="45.1745%" y="126.50">main (manage.py:18)</text></g><g><title>execute_from_command_line (django/core/management/__init__.py:442) (5,462 samples, 43.38%)</title><rect x="44.9245%" y="132" width="43.3836%" height="15" fill="rgb(232,36,49)" fg:x="5656" fg:w="5462"/><text x="45.1745%" y="142.50">execute_from_command_line (django/core/management/__init__.py:442)</text></g><g><title>execute (django/core/management/__init__.py:436) (5,452 samples, 43.30%)</title><rect x="45.0040%" y="148" width="43.3042%" height="15" fill="rgb(209,103,24)" fg:x="5666" fg:w="5452"/><text x="45.2540%" y="158.50">execute (django/core/management/__init__.py:436)</text></g><g><title>run_from_argv (django/core/management/base.py:412) (5,452 samples, 43.30%)</title><rect x="45.0040%" y="164" width="43.3042%" height="15" fill="rgb(229,88,8)" fg:x="5666" fg:w="5452"/><text x="45.2540%" y="174.50">run_from_argv (django/core/management/base.py:412)</text></g><g><title>execute (django/core/management/commands/runserver.py:74) (5,452 samples, 43.30%)</title><rect x="45.0040%" y="180" width="43.3042%" height="15" fill="rgb(213,181,19)" fg:x="5666" fg:w="5452"/><text x="45.2540%" y="190.50">execute (django/core/management/commands/runserver.py:74)</text></g><g><title>execute (django/core/management/base.py:458) (5,452 samples, 43.30%)</title><rect x="45.0040%" y="196" width="43.3042%" height="15" fill="rgb(254,191,54)" fg:x="5666" fg:w="5452"/><text x="45.2540%" y="206.50">execute (django/core/management/base.py:458)</text></g><g><title>handle (django/core/management/commands/runserver.py:111) (5,452 samples, 43.30%)</title><rect x="45.0040%" y="212" width="43.3042%" height="15" fill="rgb(241,83,37)" fg:x="5666" fg:w="5452"/><text x="45.2540%" y="222.50">handle (django/core/management/commands/runserver.py:111)</text></g><g><title>run (django/core/management/commands/runserver.py:118) (5,452 samples, 43.30%)</title><rect x="45.0040%" y="228" width="43.3042%" height="15" fill="rgb(233,36,39)" fg:x="5666" fg:w="5452"/><text x="45.2540%" y="238.50">run (django/core/management/commands/runserver.py:118)</text></g><g><title>run_with_reloader (django/utils/autoreload.py:671) (5,452 samples, 43.30%)</title><rect x="45.0040%" y="244" width="43.3042%" height="15" fill="rgb(226,3,54)" fg:x="5666" fg:w="5452"/><text x="45.2540%" y="254.50">run_with_reloader (django/utils/autoreload.py:671)</text></g><g><title>start_django (django/utils/autoreload.py:660) (5,452 samples, 43.30%)</title><rect x="45.0040%" y="260" width="43.3042%" height="15" fill="rgb(245,192,40)" fg:x="5666" fg:w="5452"/><text x="45.2540%" y="270.50">start_django (django/utils/autoreload.py:660)</text></g><g><title>run (django/utils/autoreload.py:344) (5,451 samples, 43.30%)</title><rect x="45.0119%" y="276" width="43.2963%" height="15" fill="rgb(238,167,29)" fg:x="5667" fg:w="5451"/><text x="45.2619%" y="286.50">run (django/utils/autoreload.py:344)</text></g><g><title>run_loop (django/utils/autoreload.py:350) (5,451 samples, 43.30%)</title><rect x="45.0119%" y="292" width="43.2963%" height="15" fill="rgb(232,182,51)" fg:x="5667" fg:w="5451"/><text x="45.2619%" y="302.50">run_loop (django/utils/autoreload.py:350)</text></g><g><title>tick (django/utils/autoreload.py:405) (5,378 samples, 42.72%)</title><rect x="45.5917%" y="308" width="42.7164%" height="15" fill="rgb(231,60,39)" fg:x="5740" fg:w="5378"/><text x="45.8417%" y="318.50">tick (django/utils/autoreload.py:405)</text></g><g><title>setup (socketserver.py:805) (13 samples, 0.10%)</title><rect x="88.6100%" y="212" width="0.1033%" height="15" fill="rgb(208,69,12)" fg:x="11156" fg:w="13"/><text x="88.8600%" y="222.50"></text></g><g><title>__init__ (socketserver.py:753) (15 samples, 0.12%)</title><rect x="88.6100%" y="196" width="0.1191%" height="15" fill="rgb(235,93,37)" fg:x="11156" fg:w="15"/><text x="88.8600%" y="206.50"></text></g><g><title>parse (email/parser.py:56) (40 samples, 0.32%)</title><rect x="89.0389%" y="292" width="0.3177%" height="15" fill="rgb(213,116,39)" fg:x="11210" fg:w="40"/><text x="89.2889%" y="302.50"></text></g><g><title>feed (email/feedparser.py:176) (32 samples, 0.25%)</title><rect x="89.1025%" y="308" width="0.2542%" height="15" fill="rgb(222,207,29)" fg:x="11218" fg:w="32"/><text x="89.3525%" y="318.50"></text></g><g><title>_call_parse (email/feedparser.py:180) (32 samples, 0.25%)</title><rect x="89.1025%" y="324" width="0.2542%" height="15" fill="rgb(206,96,30)" fg:x="11218" fg:w="32"/><text x="89.3525%" y="334.50"></text></g><g><title>parse_request (http/server.py:342) (69 samples, 0.55%)</title><rect x="88.8880%" y="244" width="0.5481%" height="15" fill="rgb(218,138,4)" fg:x="11191" fg:w="69"/><text x="89.1380%" y="254.50"></text></g><g><title>parse_headers (http/client.py:236) (64 samples, 0.51%)</title><rect x="88.9277%" y="260" width="0.5083%" height="15" fill="rgb(250,191,14)" fg:x="11196" fg:w="64"/><text x="89.1777%" y="270.50"></text></g><g><title>parsestr (email/parser.py:67) (64 samples, 0.51%)</title><rect x="88.9277%" y="276" width="0.5083%" height="15" fill="rgb(239,60,40)" fg:x="11196" fg:w="64"/><text x="89.1777%" y="286.50"></text></g><g><title>handle_one_request (django/core/servers/basehttp.py:245) (78 samples, 0.62%)</title><rect x="88.8324%" y="228" width="0.6195%" height="15" fill="rgb(206,27,48)" fg:x="11184" fg:w="78"/><text x="89.0824%" y="238.50"></text></g><g><title>get_environ (django/core/servers/basehttp.py:223) (23 samples, 0.18%)</title><rect x="89.4996%" y="244" width="0.1827%" height="15" fill="rgb(225,35,8)" fg:x="11268" fg:w="23"/><text x="89.7496%" y="254.50"></text></g><g><title>handle_one_request (django/core/servers/basehttp.py:249) (25 samples, 0.20%)</title><rect x="89.4917%" y="228" width="0.1986%" height="15" fill="rgb(250,213,24)" fg:x="11267" fg:w="25"/><text x="89.7417%" y="238.50"></text></g><g><title>__call__ (sentry_sdk/integrations/wsgi.py:104) (41 samples, 0.33%)</title><rect x="89.8173%" y="276" width="0.3257%" height="15" fill="rgb(247,123,22)" fg:x="11308" fg:w="41"/><text x="90.0673%" y="286.50"></text></g><g><title>start_child (sentry_sdk/tracing.py:228) (17 samples, 0.14%)</title><rect x="90.3257%" y="372" width="0.1350%" height="15" fill="rgb(231,138,38)" fg:x="11372" fg:w="17"/><text x="90.5757%" y="382.50"></text></g><g><title>wrapper (sentry_sdk/integrations/django/signals_handlers.py:61) (26 samples, 0.21%)</title><rect x="90.2621%" y="340" width="0.2065%" height="15" fill="rgb(231,145,46)" fg:x="11364" fg:w="26"/><text x="90.5121%" y="350.50"></text></g><g><title>start_span (sentry_sdk/hub.py:472) (19 samples, 0.15%)</title><rect x="90.3177%" y="356" width="0.1509%" height="15" fill="rgb(251,118,11)" fg:x="11371" fg:w="19"/><text x="90.5677%" y="366.50"></text></g><g><title>__getattr__ (asgiref/local.py:101) (14 samples, 0.11%)</title><rect x="90.6116%" y="404" width="0.1112%" height="15" fill="rgb(217,147,25)" fg:x="11408" fg:w="14"/><text x="90.8616%" y="414.50"></text></g><g><title>send (django/dispatch/dispatcher.py:176) (62 samples, 0.49%)</title><rect x="90.2383%" y="308" width="0.4925%" height="15" fill="rgb(247,81,37)" fg:x="11361" fg:w="62"/><text x="90.4883%" y="318.50"></text></g><g><title>&lt;listcomp&gt; (django/dispatch/dispatcher.py:177) (62 samples, 0.49%)</title><rect x="90.2383%" y="324" width="0.4925%" height="15" fill="rgb(209,12,38)" fg:x="11361" fg:w="62"/><text x="90.4883%" y="334.50"></text></g><g><title>wrapper (sentry_sdk/integrations/django/signals_handlers.py:66) (33 samples, 0.26%)</title><rect x="90.4686%" y="340" width="0.2621%" height="15" fill="rgb(227,1,9)" fg:x="11390" fg:w="33"/><text x="90.7186%" y="350.50"></text></g><g><title>reset_queries (django/db/__init__.py:46) (20 samples, 0.16%)</title><rect x="90.5719%" y="356" width="0.1589%" height="15" fill="rgb(248,47,43)" fg:x="11403" fg:w="20"/><text x="90.8219%" y="366.50"></text></g><g><title>all (django/utils/connection.py:76) (20 samples, 0.16%)</title><rect x="90.5719%" y="372" width="0.1589%" height="15" fill="rgb(221,10,30)" fg:x="11403" fg:w="20"/><text x="90.8219%" y="382.50"></text></g><g><title>&lt;listcomp&gt; (django/utils/connection.py:80) (19 samples, 0.15%)</title><rect x="90.5798%" y="388" width="0.1509%" height="15" fill="rgb(210,229,1)" fg:x="11404" fg:w="19"/><text x="90.8298%" y="398.50"></text></g><g><title>__call__ (django/core/handlers/wsgi.py:122) (70 samples, 0.56%)</title><rect x="90.2383%" y="292" width="0.5560%" height="15" fill="rgb(222,148,37)" fg:x="11361" fg:w="70"/><text x="90.4883%" y="302.50"></text></g><g><title>sentry_patched_get_response (sentry_sdk/integrations/django/__init__.py:430) (21 samples, 0.17%)</title><rect x="90.8896%" y="308" width="0.1668%" height="15" fill="rgb(234,67,33)" fg:x="11443" fg:w="21"/><text x="91.1396%" y="318.50"></text></g><g><title>_before_get_response (sentry_sdk/integrations/django/__init__.py:388) (14 samples, 0.11%)</title><rect x="90.9452%" y="324" width="0.1112%" height="15" fill="rgb(247,98,35)" fg:x="11450" fg:w="14"/><text x="91.1952%" y="334.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:169) (18 samples, 0.14%)</title><rect x="91.2153%" y="356" width="0.1430%" height="15" fill="rgb(247,138,52)" fg:x="11484" fg:w="18"/><text x="91.4653%" y="366.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:169) (18 samples, 0.14%)</title><rect x="91.9142%" y="500" width="0.1430%" height="15" fill="rgb(213,79,30)" fg:x="11572" fg:w="18"/><text x="92.1642%" y="510.50"></text></g><g><title>_check_middleware_span (sentry_sdk/integrations/django/middleware.py:91) (15 samples, 0.12%)</title><rect x="91.9380%" y="516" width="0.1191%" height="15" fill="rgb(246,177,23)" fg:x="11575" fg:w="15"/><text x="92.1880%" y="526.50"></text></g><g><title>start_span (sentry_sdk/hub.py:472) (15 samples, 0.12%)</title><rect x="91.9380%" y="532" width="0.1191%" height="15" fill="rgb(230,62,27)" fg:x="11575" fg:w="15"/><text x="92.1880%" y="542.50"></text></g><g><title>start_child (sentry_sdk/tracing.py:228) (13 samples, 0.10%)</title><rect x="91.9539%" y="548" width="0.1033%" height="15" fill="rgb(216,154,8)" fg:x="11577" fg:w="13"/><text x="92.2039%" y="558.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:169) (16 samples, 0.13%)</title><rect x="92.3034%" y="596" width="0.1271%" height="15" fill="rgb(244,35,45)" fg:x="11621" fg:w="16"/><text x="92.5534%" y="606.50"></text></g><g><title>__init__ (django/contrib/messages/storage/cookie.py:77) (13 samples, 0.10%)</title><rect x="92.5338%" y="692" width="0.1033%" height="15" fill="rgb(251,115,12)" fg:x="11650" fg:w="13"/><text x="92.7838%" y="702.50"></text></g><g><title>__init__ (django/contrib/messages/storage/fallback.py:16) (16 samples, 0.13%)</title><rect x="92.5179%" y="660" width="0.1271%" height="15" fill="rgb(240,54,50)" fg:x="11648" fg:w="16"/><text x="92.7679%" y="670.50"></text></g><g><title>&lt;listcomp&gt; (django/contrib/messages/storage/fallback.py:17) (16 samples, 0.13%)</title><rect x="92.5179%" y="676" width="0.1271%" height="15" fill="rgb(233,84,52)" fg:x="11648" fg:w="16"/><text x="92.7679%" y="686.50"></text></g><g><title>__call__ (django/utils/deprecation.py:133) (23 samples, 0.18%)</title><rect x="92.4782%" y="612" width="0.1827%" height="15" fill="rgb(207,117,47)" fg:x="11643" fg:w="23"/><text x="92.7282%" y="622.50"></text></g><g><title>process_request (django/contrib/messages/middleware.py:12) (23 samples, 0.18%)</title><rect x="92.4782%" y="628" width="0.1827%" height="15" fill="rgb(249,43,39)" fg:x="11643" fg:w="23"/><text x="92.7282%" y="638.50"></text></g><g><title>default_storage (django/contrib/messages/storage/__init__.py:12) (23 samples, 0.18%)</title><rect x="92.4782%" y="644" width="0.1827%" height="15" fill="rgb(209,38,44)" fg:x="11643" fg:w="23"/><text x="92.7282%" y="654.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:169) (13 samples, 0.10%)</title><rect x="92.6926%" y="644" width="0.1033%" height="15" fill="rgb(236,212,23)" fg:x="11670" fg:w="13"/><text x="92.9426%" y="654.50"></text></g><g><title>_get_response (django/core/handlers/base.py:181) (15 samples, 0.12%)</title><rect x="92.8515%" y="692" width="0.1191%" height="15" fill="rgb(242,79,21)" fg:x="11690" fg:w="15"/><text x="93.1015%" y="702.50"></text></g><g><title>resolve_request (django/core/handlers/base.py:313) (13 samples, 0.10%)</title><rect x="92.8674%" y="708" width="0.1033%" height="15" fill="rgb(211,96,35)" fg:x="11692" fg:w="13"/><text x="93.1174%" y="718.50"></text></g><g><title>_get_response (django/core/handlers/base.py:197) (24 samples, 0.19%)</title><rect x="93.0500%" y="692" width="0.1906%" height="15" fill="rgb(253,215,40)" fg:x="11715" fg:w="24"/><text x="93.3000%" y="702.50"></text></g><g><title>inner (django/core/handlers/exception.py:55) (51 samples, 0.41%)</title><rect x="92.8435%" y="676" width="0.4051%" height="15" fill="rgb(211,81,21)" fg:x="11689" fg:w="51"/><text x="93.0935%" y="686.50"></text></g><g><title>get_template (django/template/loader.py:15) (16 samples, 0.13%)</title><rect x="93.3122%" y="756" width="0.1271%" height="15" fill="rgb(208,190,38)" fg:x="11748" fg:w="16"/><text x="93.5622%" y="766.50"></text></g><g><title>page_not_found (django/views/defaults.py:63) (23 samples, 0.18%)</title><rect x="93.3042%" y="740" width="0.1827%" height="15" fill="rgb(235,213,38)" fg:x="11747" fg:w="23"/><text x="93.5542%" y="750.50"></text></g><g><title>_wrapper_view (django/utils/decorators.py:134) (57 samples, 0.45%)</title><rect x="93.2883%" y="724" width="0.4527%" height="15" fill="rgb(237,122,38)" fg:x="11745" fg:w="57"/><text x="93.5383%" y="734.50"></text></g><g><title>response_for_exception (django/core/handlers/exception.py:68) (63 samples, 0.50%)</title><rect x="93.2486%" y="692" width="0.5004%" height="15" fill="rgb(244,218,35)" fg:x="11740" fg:w="63"/><text x="93.4986%" y="702.50"></text></g><g><title>get_exception_response (django/core/handlers/exception.py:164) (59 samples, 0.47%)</title><rect x="93.2804%" y="708" width="0.4686%" height="15" fill="rgb(240,68,47)" fg:x="11744" fg:w="59"/><text x="93.5304%" y="718.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (121 samples, 0.96%)</title><rect x="92.8356%" y="660" width="0.9611%" height="15" fill="rgb(210,16,53)" fg:x="11688" fg:w="121"/><text x="93.0856%" y="670.50"></text></g><g><title>inner (django/core/handlers/exception.py:57) (69 samples, 0.55%)</title><rect x="93.2486%" y="676" width="0.5481%" height="15" fill="rgb(235,124,12)" fg:x="11740" fg:w="69"/><text x="93.4986%" y="686.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (147 samples, 1.17%)</title><rect x="92.6608%" y="612" width="1.1676%" height="15" fill="rgb(224,169,11)" fg:x="11666" fg:w="147"/><text x="92.9108%" y="622.50"></text></g><g><title>inner (django/core/handlers/exception.py:55) (146 samples, 1.16%)</title><rect x="92.6688%" y="628" width="1.1597%" height="15" fill="rgb(250,166,2)" fg:x="11667" fg:w="146"/><text x="92.9188%" y="638.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (128 samples, 1.02%)</title><rect x="92.8118%" y="644" width="1.0167%" height="15" fill="rgb(242,216,29)" fg:x="11685" fg:w="128"/><text x="93.0618%" y="654.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (220 samples, 1.75%)</title><rect x="92.0969%" y="516" width="1.7474%" height="15" fill="rgb(230,116,27)" fg:x="11595" fg:w="220"/><text x="92.3469%" y="526.50"></text></g><g><title>inner (django/core/handlers/exception.py:55) (220 samples, 1.75%)</title><rect x="92.0969%" y="532" width="1.7474%" height="15" fill="rgb(228,99,48)" fg:x="11595" fg:w="220"/><text x="92.3469%" y="542.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (206 samples, 1.64%)</title><rect x="92.2081%" y="548" width="1.6362%" height="15" fill="rgb(253,11,6)" fg:x="11609" fg:w="206"/><text x="92.4581%" y="558.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (195 samples, 1.55%)</title><rect x="92.2955%" y="564" width="1.5488%" height="15" fill="rgb(247,143,39)" fg:x="11620" fg:w="195"/><text x="92.5455%" y="574.50"></text></g><g><title>inner (django/core/handlers/exception.py:55) (195 samples, 1.55%)</title><rect x="92.2955%" y="580" width="1.5488%" height="15" fill="rgb(236,97,10)" fg:x="11620" fg:w="195"/><text x="92.5455%" y="590.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (177 samples, 1.41%)</title><rect x="92.4384%" y="596" width="1.4059%" height="15" fill="rgb(233,208,19)" fg:x="11638" fg:w="177"/><text x="92.6884%" y="606.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (248 samples, 1.97%)</title><rect x="91.8824%" y="468" width="1.9698%" height="15" fill="rgb(216,164,2)" fg:x="11568" fg:w="248"/><text x="92.1324%" y="478.50">_..</text></g><g><title>inner (django/core/handlers/exception.py:55) (248 samples, 1.97%)</title><rect x="91.8824%" y="484" width="1.9698%" height="15" fill="rgb(220,129,5)" fg:x="11568" fg:w="248"/><text x="92.1324%" y="494.50">i..</text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (226 samples, 1.80%)</title><rect x="92.0572%" y="500" width="1.7951%" height="15" fill="rgb(242,17,10)" fg:x="11590" fg:w="226"/><text x="92.3072%" y="510.50">_..</text></g><g><title>process_response (django/middleware/common.py:107) (27 samples, 0.21%)</title><rect x="93.8602%" y="484" width="0.2145%" height="15" fill="rgb(242,107,0)" fg:x="11817" fg:w="27"/><text x="94.1102%" y="494.50"></text></g><g><title>should_redirect_with_slash (django/middleware/common.py:70) (15 samples, 0.12%)</title><rect x="93.9555%" y="500" width="0.1191%" height="15" fill="rgb(251,28,31)" fg:x="11829" fg:w="15"/><text x="94.2055%" y="510.50"></text></g><g><title>is_valid_path (django/urls/base.py:155) (15 samples, 0.12%)</title><rect x="93.9555%" y="516" width="0.1191%" height="15" fill="rgb(233,223,10)" fg:x="11829" fg:w="15"/><text x="94.2055%" y="526.50"></text></g><g><title>resolve (django/urls/base.py:24) (15 samples, 0.12%)</title><rect x="93.9555%" y="532" width="0.1191%" height="15" fill="rgb(215,21,27)" fg:x="11829" fg:w="15"/><text x="94.2055%" y="542.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (316 samples, 2.51%)</title><rect x="91.6839%" y="420" width="2.5099%" height="15" fill="rgb(232,23,21)" fg:x="11543" fg:w="316"/><text x="91.9339%" y="430.50">__..</text></g><g><title>inner (django/core/handlers/exception.py:55) (316 samples, 2.51%)</title><rect x="91.6839%" y="436" width="2.5099%" height="15" fill="rgb(244,5,23)" fg:x="11543" fg:w="316"/><text x="91.9339%" y="446.50">in..</text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (304 samples, 2.41%)</title><rect x="91.7792%" y="452" width="2.4146%" height="15" fill="rgb(226,81,46)" fg:x="11555" fg:w="304"/><text x="92.0292%" y="462.50">__..</text></g><g><title>__call__ (django/utils/deprecation.py:136) (43 samples, 0.34%)</title><rect x="93.8523%" y="468" width="0.3415%" height="15" fill="rgb(247,70,30)" fg:x="11816" fg:w="43"/><text x="94.1023%" y="478.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (351 samples, 2.79%)</title><rect x="91.4218%" y="372" width="2.7879%" height="15" fill="rgb(212,68,19)" fg:x="11510" fg:w="351"/><text x="91.6718%" y="382.50">__..</text></g><g><title>inner (django/core/handlers/exception.py:55) (351 samples, 2.79%)</title><rect x="91.4218%" y="388" width="2.7879%" height="15" fill="rgb(240,187,13)" fg:x="11510" fg:w="351"/><text x="91.6718%" y="398.50">in..</text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (333 samples, 2.64%)</title><rect x="91.5647%" y="404" width="2.6450%" height="15" fill="rgb(223,113,26)" fg:x="11528" fg:w="333"/><text x="91.8147%" y="414.50">__..</text></g><g><title>sentry_patched_get_response (sentry_sdk/integrations/django/__init__.py:431) (405 samples, 3.22%)</title><rect x="91.0564%" y="308" width="3.2168%" height="15" fill="rgb(206,192,2)" fg:x="11464" fg:w="405"/><text x="91.3064%" y="318.50">sen..</text></g><g><title>get_response (django/core/handlers/base.py:140) (394 samples, 3.13%)</title><rect x="91.1438%" y="324" width="3.1295%" height="15" fill="rgb(241,108,4)" fg:x="11475" fg:w="394"/><text x="91.3938%" y="334.50">get..</text></g><g><title>inner (django/core/handlers/exception.py:55) (392 samples, 3.11%)</title><rect x="91.1597%" y="340" width="3.1136%" height="15" fill="rgb(247,173,49)" fg:x="11477" fg:w="392"/><text x="91.4097%" y="350.50">inn..</text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (365 samples, 2.90%)</title><rect x="91.3741%" y="356" width="2.8991%" height="15" fill="rgb(224,114,35)" fg:x="11504" fg:w="365"/><text x="91.6241%" y="366.50">__..</text></g><g><title>__call__ (django/core/handlers/wsgi.py:124) (437 samples, 3.47%)</title><rect x="90.8817%" y="292" width="3.4710%" height="15" fill="rgb(245,159,27)" fg:x="11442" fg:w="437"/><text x="91.1317%" y="302.50">__c..</text></g><g><title>__call__ (sentry_sdk/integrations/wsgi.py:108) (550 samples, 4.37%)</title><rect x="90.1430%" y="276" width="4.3685%" height="15" fill="rgb(245,172,44)" fg:x="11349" fg:w="550"/><text x="90.3930%" y="286.50">__cal..</text></g><g><title>__call__ (django/core/handlers/wsgi.py:133) (15 samples, 0.12%)</title><rect x="94.3924%" y="292" width="0.1191%" height="15" fill="rgb(236,23,11)" fg:x="11884" fg:w="15"/><text x="94.6424%" y="302.50"></text></g><g><title>__enter__ (contextlib.py:137) (14 samples, 0.11%)</title><rect x="94.5751%" y="292" width="0.1112%" height="15" fill="rgb(205,117,38)" fg:x="11907" fg:w="14"/><text x="94.8251%" y="302.50"></text></g><g><title>auto_session_tracking (sentry_sdk/sessions.py:45) (13 samples, 0.10%)</title><rect x="94.5830%" y="308" width="0.1033%" height="15" fill="rgb(237,72,25)" fg:x="11908" fg:w="13"/><text x="94.8330%" y="318.50"></text></g><g><title>__exit__ (contextlib.py:144) (15 samples, 0.12%)</title><rect x="94.6863%" y="292" width="0.1191%" height="15" fill="rgb(244,70,9)" fg:x="11921" fg:w="15"/><text x="94.9363%" y="302.50"></text></g><g><title>auto_session_tracking (sentry_sdk/sessions.py:50) (15 samples, 0.12%)</title><rect x="94.6863%" y="308" width="0.1191%" height="15" fill="rgb(217,125,39)" fg:x="11921" fg:w="15"/><text x="94.9363%" y="318.50"></text></g><g><title>end_session (sentry_sdk/hub.py:667) (13 samples, 0.10%)</title><rect x="94.7021%" y="324" width="0.1033%" height="15" fill="rgb(235,36,10)" fg:x="11923" fg:w="13"/><text x="94.9521%" y="334.50"></text></g><g><title>capture_session (sentry_sdk/client.py:554) (13 samples, 0.10%)</title><rect x="94.7021%" y="340" width="0.1033%" height="15" fill="rgb(251,123,47)" fg:x="11923" fg:w="13"/><text x="94.9521%" y="350.50"></text></g><g><title>info (logging/__init__.py:1489) (13 samples, 0.10%)</title><rect x="94.7021%" y="356" width="0.1033%" height="15" fill="rgb(221,13,13)" fg:x="11923" fg:w="13"/><text x="94.9521%" y="366.50"></text></g><g><title>__call__ (sentry_sdk/integrations/wsgi.py:85) (35 samples, 0.28%)</title><rect x="94.5512%" y="276" width="0.2780%" height="15" fill="rgb(238,131,9)" fg:x="11904" fg:w="35"/><text x="94.8012%" y="286.50"></text></g><g><title>_make_wsgi_event_processor (sentry_sdk/integrations/wsgi.py:254) (24 samples, 0.19%)</title><rect x="95.0119%" y="292" width="0.1906%" height="15" fill="rgb(211,50,8)" fg:x="11962" fg:w="24"/><text x="95.2619%" y="302.50"></text></g><g><title>__call__ (sentry_sdk/integrations/wsgi.py:92) (38 samples, 0.30%)</title><rect x="94.9087%" y="276" width="0.3018%" height="15" fill="rgb(245,182,24)" fg:x="11949" fg:w="38"/><text x="95.1587%" y="286.50"></text></g><g><title>continue_trace (sentry_sdk/api.py:292) (28 samples, 0.22%)</title><rect x="95.2661%" y="292" width="0.2224%" height="15" fill="rgb(242,14,37)" fg:x="11994" fg:w="28"/><text x="95.5161%" y="302.50"></text></g><g><title>generate_propagation_context (sentry_sdk/scope.py:167) (28 samples, 0.22%)</title><rect x="95.2661%" y="308" width="0.2224%" height="15" fill="rgb(246,228,12)" fg:x="11994" fg:w="28"/><text x="95.5161%" y="318.50"></text></g><g><title>_extract_propagation_context (sentry_sdk/scope.py:130) (27 samples, 0.21%)</title><rect x="95.2740%" y="324" width="0.2145%" height="15" fill="rgb(213,55,15)" fg:x="11995" fg:w="27"/><text x="95.5240%" y="334.50"></text></g><g><title>__init__ (sentry_sdk/tracing.py:526) (17 samples, 0.14%)</title><rect x="95.5203%" y="324" width="0.1350%" height="15" fill="rgb(209,9,3)" fg:x="12026" fg:w="17"/><text x="95.7703%" y="334.50"></text></g><g><title>continue_trace (sentry_sdk/api.py:294) (22 samples, 0.17%)</title><rect x="95.4885%" y="292" width="0.1747%" height="15" fill="rgb(230,59,30)" fg:x="12022" fg:w="22"/><text x="95.7385%" y="302.50"></text></g><g><title>continue_from_headers (sentry_sdk/tracing.py:306) (20 samples, 0.16%)</title><rect x="95.5044%" y="308" width="0.1589%" height="15" fill="rgb(209,121,21)" fg:x="12024" fg:w="20"/><text x="95.7544%" y="318.50"></text></g><g><title>__call__ (sentry_sdk/integrations/wsgi.py:97) (71 samples, 0.56%)</title><rect x="95.2105%" y="276" width="0.5639%" height="15" fill="rgb(220,109,13)" fg:x="11987" fg:w="71"/><text x="95.4605%" y="286.50"></text></g><g><title>continue_trace (sentry_sdk/api.py:295) (14 samples, 0.11%)</title><rect x="95.6632%" y="292" width="0.1112%" height="15" fill="rgb(232,18,1)" fg:x="12044" fg:w="14"/><text x="95.9132%" y="302.50"></text></g><g><title>run (wsgiref/handlers.py:137) (761 samples, 6.04%)</title><rect x="89.7379%" y="244" width="6.0445%" height="15" fill="rgb(215,41,42)" fg:x="11298" fg:w="761"/><text x="89.9879%" y="254.50">run (wsg..</text></g><g><title>sentry_patched_wsgi_handler (sentry_sdk/integrations/django/__init__.py:148) (751 samples, 5.97%)</title><rect x="89.8173%" y="260" width="5.9651%" height="15" fill="rgb(224,123,36)" fg:x="11308" fg:w="751"/><text x="90.0673%" y="270.50">sentry_p..</text></g><g><title>write (socketserver.py:834) (15 samples, 0.12%)</title><rect x="95.9333%" y="356" width="0.1191%" height="15" fill="rgb(240,125,3)" fg:x="12078" fg:w="15"/><text x="96.1833%" y="366.50"></text></g><g><title>send_preamble (wsgiref/handlers.py:265) (23 samples, 0.18%)</title><rect x="95.9095%" y="324" width="0.1827%" height="15" fill="rgb(205,98,50)" fg:x="12075" fg:w="23"/><text x="96.1595%" y="334.50"></text></g><g><title>_write (wsgiref/handlers.py:466) (21 samples, 0.17%)</title><rect x="95.9253%" y="340" width="0.1668%" height="15" fill="rgb(205,185,37)" fg:x="12077" fg:w="21"/><text x="96.1753%" y="350.50"></text></g><g><title>send_headers (wsgiref/handlers.py:345) (45 samples, 0.36%)</title><rect x="95.9015%" y="308" width="0.3574%" height="15" fill="rgb(238,207,15)" fg:x="12074" fg:w="45"/><text x="96.1515%" y="318.50"></text></g><g><title>write (wsgiref/handlers.py:287) (56 samples, 0.44%)</title><rect x="95.8539%" y="292" width="0.4448%" height="15" fill="rgb(213,199,42)" fg:x="12068" fg:w="56"/><text x="96.1039%" y="302.50"></text></g><g><title>finish_response (wsgiref/handlers.py:184) (64 samples, 0.51%)</title><rect x="95.8539%" y="276" width="0.5083%" height="15" fill="rgb(235,201,11)" fg:x="12068" fg:w="64"/><text x="96.1039%" y="286.50"></text></g><g><title>close (wsgiref/simple_server.py:34) (41 samples, 0.33%)</title><rect x="96.3701%" y="308" width="0.3257%" height="15" fill="rgb(207,46,11)" fg:x="12133" fg:w="41"/><text x="96.6201%" y="318.50"></text></g><g><title>log_request (http/server.py:549) (40 samples, 0.32%)</title><rect x="96.3781%" y="324" width="0.3177%" height="15" fill="rgb(241,35,35)" fg:x="12134" fg:w="40"/><text x="96.6281%" y="334.50"></text></g><g><title>log_message (django/core/servers/basehttp.py:212) (36 samples, 0.29%)</title><rect x="96.4098%" y="340" width="0.2859%" height="15" fill="rgb(243,32,47)" fg:x="12138" fg:w="36"/><text x="96.6598%" y="350.50"></text></g><g><title>info (logging/__init__.py:1489) (35 samples, 0.28%)</title><rect x="96.4178%" y="356" width="0.2780%" height="15" fill="rgb(247,202,23)" fg:x="12139" fg:w="35"/><text x="96.6678%" y="366.50"></text></g><g><title>_log (logging/__init__.py:1634) (18 samples, 0.14%)</title><rect x="96.5528%" y="372" width="0.1430%" height="15" fill="rgb(219,102,11)" fg:x="12156" fg:w="18"/><text x="96.8028%" y="382.50"></text></g><g><title>handle (logging/__init__.py:1644) (18 samples, 0.14%)</title><rect x="96.5528%" y="388" width="0.1430%" height="15" fill="rgb(243,110,44)" fg:x="12156" fg:w="18"/><text x="96.8028%" y="398.50"></text></g><g><title>sentry_patched_callhandlers (sentry_sdk/integrations/logging.py:96) (18 samples, 0.14%)</title><rect x="96.5528%" y="404" width="0.1430%" height="15" fill="rgb(222,74,54)" fg:x="12156" fg:w="18"/><text x="96.8028%" y="414.50"></text></g><g><title>callHandlers (logging/__init__.py:1706) (18 samples, 0.14%)</title><rect x="96.5528%" y="420" width="0.1430%" height="15" fill="rgb(216,99,12)" fg:x="12156" fg:w="18"/><text x="96.8028%" y="430.50"></text></g><g><title>handle (logging/__init__.py:978) (17 samples, 0.14%)</title><rect x="96.5608%" y="436" width="0.1350%" height="15" fill="rgb(226,22,26)" fg:x="12157" fg:w="17"/><text x="96.8108%" y="446.50"></text></g><g><title>__init__ (sentry_sdk/tracing.py:133) (14 samples, 0.11%)</title><rect x="96.9420%" y="436" width="0.1112%" height="15" fill="rgb(217,163,10)" fg:x="12205" fg:w="14"/><text x="97.1920%" y="446.50"></text></g><g><title>__init__ (sentry_sdk/tracing.py:134) (18 samples, 0.14%)</title><rect x="97.0532%" y="436" width="0.1430%" height="15" fill="rgb(213,25,53)" fg:x="12219" fg:w="18"/><text x="97.3032%" y="446.50"></text></g><g><title>wrapper (sentry_sdk/integrations/django/signals_handlers.py:61) (50 samples, 0.40%)</title><rect x="96.8229%" y="404" width="0.3971%" height="15" fill="rgb(252,105,26)" fg:x="12190" fg:w="50"/><text x="97.0729%" y="414.50"></text></g><g><title>start_span (sentry_sdk/hub.py:474) (39 samples, 0.31%)</title><rect x="96.9102%" y="420" width="0.3098%" height="15" fill="rgb(220,39,43)" fg:x="12201" fg:w="39"/><text x="97.1602%" y="430.50"></text></g><g><title>close_caches (django/core/cache/__init__.py:63) (13 samples, 0.10%)</title><rect x="97.2280%" y="420" width="0.1033%" height="15" fill="rgb(229,68,48)" fg:x="12241" fg:w="13"/><text x="97.4780%" y="430.50"></text></g><g><title>close_all (django/utils/connection.py:84) (13 samples, 0.10%)</title><rect x="97.2280%" y="436" width="0.1033%" height="15" fill="rgb(252,8,32)" fg:x="12241" fg:w="13"/><text x="97.4780%" y="446.50"></text></g><g><title>send (django/dispatch/dispatcher.py:176) (94 samples, 0.75%)</title><rect x="96.7752%" y="372" width="0.7466%" height="15" fill="rgb(223,20,43)" fg:x="12184" fg:w="94"/><text x="97.0252%" y="382.50"></text></g><g><title>&lt;listcomp&gt; (django/dispatch/dispatcher.py:177) (94 samples, 0.75%)</title><rect x="96.7752%" y="388" width="0.7466%" height="15" fill="rgb(229,81,49)" fg:x="12184" fg:w="94"/><text x="97.0252%" y="398.50"></text></g><g><title>wrapper (sentry_sdk/integrations/django/signals_handlers.py:66) (38 samples, 0.30%)</title><rect x="97.2200%" y="404" width="0.3018%" height="15" fill="rgb(236,28,36)" fg:x="12240" fg:w="38"/><text x="97.4700%" y="414.50"></text></g><g><title>reset_urlconf (django/core/handlers/base.py:370) (17 samples, 0.14%)</title><rect x="97.3868%" y="420" width="0.1350%" height="15" fill="rgb(249,185,26)" fg:x="12261" fg:w="17"/><text x="97.6368%" y="430.50"></text></g><g><title>close (wsgiref/handlers.py:334) (110 samples, 0.87%)</title><rect x="96.7117%" y="324" width="0.8737%" height="15" fill="rgb(249,174,33)" fg:x="12176" fg:w="110"/><text x="96.9617%" y="334.50"></text></g><g><title>close (sentry_sdk/integrations/wsgi.py:228) (106 samples, 0.84%)</title><rect x="96.7434%" y="340" width="0.8419%" height="15" fill="rgb(233,201,37)" fg:x="12180" fg:w="106"/><text x="96.9934%" y="350.50"></text></g><g><title>close (django/http/response.py:335) (104 samples, 0.83%)</title><rect x="96.7593%" y="356" width="0.8261%" height="15" fill="rgb(221,78,26)" fg:x="12182" fg:w="104"/><text x="97.0093%" y="366.50"></text></g><g><title>handle (django/core/servers/basehttp.py:227) (1,117 samples, 8.87%)</title><rect x="88.7292%" y="212" width="8.8721%" height="15" fill="rgb(250,127,30)" fg:x="11171" fg:w="1117"/><text x="88.9792%" y="222.50">handle (djang..</text></g><g><title>handle_one_request (django/core/servers/basehttp.py:252) (996 samples, 7.91%)</title><rect x="89.6902%" y="228" width="7.9110%" height="15" fill="rgb(230,49,44)" fg:x="11292" fg:w="996"/><text x="89.9402%" y="238.50">handle_one_..</text></g><g><title>run (wsgiref/handlers.py:138) (229 samples, 1.82%)</title><rect x="95.7824%" y="244" width="1.8189%" height="15" fill="rgb(229,67,23)" fg:x="12059" fg:w="229"/><text x="96.0324%" y="254.50">r..</text></g><g><title>finish_response (django/core/servers/basehttp.py:173) (228 samples, 1.81%)</title><rect x="95.7903%" y="260" width="1.8110%" height="15" fill="rgb(249,83,47)" fg:x="12060" fg:w="228"/><text x="96.0403%" y="270.50">f..</text></g><g><title>finish_response (wsgiref/handlers.py:196) (156 samples, 1.24%)</title><rect x="96.3622%" y="276" width="1.2391%" height="15" fill="rgb(215,43,3)" fg:x="12132" fg:w="156"/><text x="96.6122%" y="286.50"></text></g><g><title>close (django/core/servers/basehttp.py:157) (156 samples, 1.24%)</title><rect x="96.3622%" y="292" width="1.2391%" height="15" fill="rgb(238,154,13)" fg:x="12132" fg:w="156"/><text x="96.6122%" y="302.50"></text></g><g><title>close (wsgiref/simple_server.py:38) (113 samples, 0.90%)</title><rect x="96.7037%" y="308" width="0.8975%" height="15" fill="rgb(219,56,2)" fg:x="12175" fg:w="113"/><text x="96.9537%" y="318.50"></text></g><g><title>handle_one_request (django/core/servers/basehttp.py:237) (72 samples, 0.57%)</title><rect x="97.6013%" y="228" width="0.5719%" height="15" fill="rgb(233,0,4)" fg:x="12288" fg:w="72"/><text x="97.8513%" y="238.50"></text></g><g><title>readinto (socket.py:706) (69 samples, 0.55%)</title><rect x="97.6251%" y="244" width="0.5481%" height="15" fill="rgb(235,30,7)" fg:x="12291" fg:w="69"/><text x="97.8751%" y="254.50"></text></g><g><title>handle (django/core/servers/basehttp.py:229) (73 samples, 0.58%)</title><rect x="97.6013%" y="212" width="0.5798%" height="15" fill="rgb(250,79,13)" fg:x="12288" fg:w="73"/><text x="97.8513%" y="222.50"></text></g><g><title>__init__ (socketserver.py:755) (1,204 samples, 9.56%)</title><rect x="88.7292%" y="196" width="9.5631%" height="15" fill="rgb(211,146,34)" fg:x="11171" fg:w="1204"/><text x="88.9792%" y="206.50">__init__ (sock..</text></g><g><title>handle (django/core/servers/basehttp.py:231) (14 samples, 0.11%)</title><rect x="98.1811%" y="212" width="0.1112%" height="15" fill="rgb(228,22,38)" fg:x="12361" fg:w="14"/><text x="98.4311%" y="222.50"></text></g><g><title>process_request_thread (socketserver.py:691) (1,231 samples, 9.78%)</title><rect x="88.5862%" y="164" width="9.7776%" height="15" fill="rgb(235,168,5)" fg:x="11153" fg:w="1231"/><text x="88.8362%" y="174.50">process_reques..</text></g><g><title>finish_request (socketserver.py:361) (1,231 samples, 9.78%)</title><rect x="88.5862%" y="180" width="9.7776%" height="15" fill="rgb(221,155,16)" fg:x="11153" fg:w="1231"/><text x="88.8362%" y="190.50">finish_request..</text></g><g><title>process_request_thread (socketserver.py:695) (15 samples, 0.12%)</title><rect x="98.3638%" y="164" width="0.1191%" height="15" fill="rgb(215,215,53)" fg:x="12384" fg:w="15"/><text x="98.6138%" y="174.50"></text></g><g><title>accept (socket.py:295) (23 samples, 0.18%)</title><rect x="98.5465%" y="260" width="0.1827%" height="15" fill="rgb(223,4,10)" fg:x="12407" fg:w="23"/><text x="98.7965%" y="270.50"></text></g><g><title>_handle_request_noblock (socketserver.py:312) (31 samples, 0.25%)</title><rect x="98.4909%" y="228" width="0.2462%" height="15" fill="rgb(234,103,6)" fg:x="12400" fg:w="31"/><text x="98.7409%" y="238.50"></text></g><g><title>get_request (socketserver.py:505) (31 samples, 0.25%)</title><rect x="98.4909%" y="244" width="0.2462%" height="15" fill="rgb(227,97,0)" fg:x="12400" fg:w="31"/><text x="98.7409%" y="254.50"></text></g><g><title>__init__ (threading.py:898) (19 samples, 0.15%)</title><rect x="98.8562%" y="260" width="0.1509%" height="15" fill="rgb(234,150,53)" fg:x="12446" fg:w="19"/><text x="99.1062%" y="270.50"></text></g><g><title>__init__ (threading.py:556) (17 samples, 0.14%)</title><rect x="98.8721%" y="276" width="0.1350%" height="15" fill="rgb(228,201,54)" fg:x="12448" fg:w="17"/><text x="99.1221%" y="286.50"></text></g><g><title>process_request (socketserver.py:701) (38 samples, 0.30%)</title><rect x="98.7609%" y="244" width="0.3018%" height="15" fill="rgb(222,22,37)" fg:x="12434" fg:w="38"/><text x="99.0109%" y="254.50"></text></g><g><title>sentry_start (sentry_sdk/integrations/threading.py:53) (15 samples, 0.12%)</title><rect x="99.2137%" y="260" width="0.1191%" height="15" fill="rgb(237,53,32)" fg:x="12491" fg:w="15"/><text x="99.4637%" y="270.50"></text></g><g><title>start (threading.py:957) (71 samples, 0.56%)</title><rect x="99.3646%" y="276" width="0.5639%" height="15" fill="rgb(233,25,53)" fg:x="12510" fg:w="71"/><text x="99.6146%" y="286.50"></text></g><g><title>serve_forever (socketserver.py:238) (183 samples, 1.45%)</title><rect x="98.4909%" y="212" width="1.4535%" height="15" fill="rgb(210,40,34)" fg:x="12400" fg:w="183"/><text x="98.7409%" y="222.50"></text></g><g><title>_handle_request_noblock (socketserver.py:317) (152 samples, 1.21%)</title><rect x="98.7371%" y="228" width="1.2073%" height="15" fill="rgb(241,220,44)" fg:x="12431" fg:w="152"/><text x="98.9871%" y="238.50"></text></g><g><title>process_request (socketserver.py:705) (105 samples, 0.83%)</title><rect x="99.1104%" y="244" width="0.8340%" height="15" fill="rgb(235,28,35)" fg:x="12478" fg:w="105"/><text x="99.3604%" y="254.50"></text></g><g><title>sentry_start (sentry_sdk/integrations/threading.py:56) (77 samples, 0.61%)</title><rect x="99.3328%" y="260" width="0.6116%" height="15" fill="rgb(210,56,17)" fg:x="12506" fg:w="77"/><text x="99.5828%" y="270.50"></text></g><g><title>run (threading.py:975) (1,433 samples, 11.38%)</title><rect x="88.5782%" y="148" width="11.3820%" height="15" fill="rgb(224,130,29)" fg:x="11152" fg:w="1433"/><text x="88.8282%" y="158.50">run (threading.py..</text></g><g><title>wrapper (django/utils/autoreload.py:64) (186 samples, 1.48%)</title><rect x="98.4829%" y="164" width="1.4774%" height="15" fill="rgb(235,212,8)" fg:x="12399" fg:w="186"/><text x="98.7329%" y="174.50"></text></g><g><title>inner_run (django/core/management/commands/runserver.py:140) (185 samples, 1.47%)</title><rect x="98.4909%" y="180" width="1.4694%" height="15" fill="rgb(223,33,50)" fg:x="12400" fg:w="185"/><text x="98.7409%" y="190.50"></text></g><g><title>run (django/core/servers/basehttp.py:281) (185 samples, 1.47%)</title><rect x="98.4909%" y="196" width="1.4694%" height="15" fill="rgb(219,149,13)" fg:x="12400" fg:w="185"/><text x="98.7409%" y="206.50"></text></g><g><title>_bootstrap_inner (threading.py:1038) (1,449 samples, 11.51%)</title><rect x="88.4591%" y="116" width="11.5091%" height="15" fill="rgb(250,156,29)" fg:x="11137" fg:w="1449"/><text x="88.7091%" y="126.50">_bootstrap_inner ..</text></g><g><title>run (sentry_sdk/integrations/threading.py:70) (1,436 samples, 11.41%)</title><rect x="88.5624%" y="132" width="11.4059%" height="15" fill="rgb(216,193,19)" fg:x="11150" fg:w="1436"/><text x="88.8124%" y="142.50">run (sentry_sdk/i..</text></g><g><title>_bootstrap (threading.py:995) (1,471 samples, 11.68%)</title><rect x="88.3082%" y="100" width="11.6839%" height="15" fill="rgb(216,135,14)" fg:x="11118" fg:w="1471"/><text x="88.5582%" y="110.50">_bootstrap (threa..</text></g><g><title>all (12,590 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(241,47,5)" fg:x="0" fg:w="12590"/><text x="0.2500%" y="62.50"></text></g><g><title>process 16985:&quot;python ./manage.py runserver&quot; (12,590 samples, 100.00%)</title><rect x="0.0000%" y="68" width="100.0000%" height="15" fill="rgb(233,42,35)" fg:x="0" fg:w="12590"/><text x="0.2500%" y="78.50">process 16985:&quot;python ./manage.py runserver&quot;</text></g><g><title>process 16987:&quot;/Users/ivana/dev/django/django.env/bin/python ./manage.py runserver&quot; (7,036 samples, 55.89%)</title><rect x="44.1144%" y="84" width="55.8856%" height="15" fill="rgb(231,13,6)" fg:x="5554" fg:w="7036"/><text x="44.3644%" y="94.50">process 16987:&quot;/Users/ivana/dev/django/django.env/bin/python ./manage.py runserver&quot;</text></g></svg></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment