Skip to content

Instantly share code, notes, and snippets.

@sentrivana
Last active June 19, 2023 07:57
Show Gist options
  • Save sentrivana/a205aa6e4dfd821640fe4d2a530fd0bb to your computer and use it in GitHub Desktop.
Save sentrivana/a205aa6e4dfd821640fe4d2a530fd0bb to your computer and use it in GitHub Desktop.
No DSN, with 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="778" onload="init(evt)" viewBox="0 0 1200 778" 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="778" 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="767.00"> </text><svg id="frames" x="10" width="1180" total_samples="12700"><g><title>&lt;module&gt; (manage.py:50) (5,520 samples, 43.46%)</title><rect x="0.0000%" y="84" width="43.4646%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="5520"/><text x="0.2500%" y="94.50">&lt;module&gt; (manage.py:50)</text></g><g><title>main (manage.py:18) (5,520 samples, 43.46%)</title><rect x="0.0000%" y="100" width="43.4646%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="5520"/><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,520 samples, 43.46%)</title><rect x="0.0000%" y="116" width="43.4646%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="5520"/><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,514 samples, 43.42%)</title><rect x="0.0472%" y="132" width="43.4173%" height="15" fill="rgb(248,212,6)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="142.50">execute (django/core/management/__init__.py:436)</text></g><g><title>run_from_argv (django/core/management/base.py:412) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="148" width="43.4173%" height="15" fill="rgb(208,68,35)" fg:x="6" fg:w="5514"/><text x="0.2972%" 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,514 samples, 43.42%)</title><rect x="0.0472%" y="164" width="43.4173%" height="15" fill="rgb(232,128,0)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="174.50">execute (django/core/management/commands/runserver.py:74)</text></g><g><title>execute (django/core/management/base.py:458) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="180" width="43.4173%" height="15" fill="rgb(207,160,47)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="190.50">execute (django/core/management/base.py:458)</text></g><g><title>handle (django/core/management/commands/runserver.py:111) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="196" width="43.4173%" height="15" fill="rgb(228,23,34)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="206.50">handle (django/core/management/commands/runserver.py:111)</text></g><g><title>run (django/core/management/commands/runserver.py:118) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="212" width="43.4173%" height="15" fill="rgb(218,30,26)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="222.50">run (django/core/management/commands/runserver.py:118)</text></g><g><title>run_with_reloader (django/utils/autoreload.py:673) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="228" width="43.4173%" height="15" fill="rgb(220,122,19)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="238.50">run_with_reloader (django/utils/autoreload.py:673)</text></g><g><title>restart_with_reloader (django/utils/autoreload.py:274) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="244" width="43.4173%" height="15" fill="rgb(250,228,42)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="254.50">restart_with_reloader (django/utils/autoreload.py:274)</text></g><g><title>run (subprocess.py:550) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="260" width="43.4173%" height="15" fill="rgb(240,193,28)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="270.50">run (subprocess.py:550)</text></g><g><title>sentry_patched_popen_communicate (sentry_sdk/integrations/stdlib.py:248) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="276" width="43.4173%" height="15" fill="rgb(216,20,37)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="286.50">sentry_patched_popen_communicate (sentry_sdk/integrations/stdlib.py:248)</text></g><g><title>communicate (subprocess.py:1199) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="292" width="43.4173%" height="15" fill="rgb(206,188,39)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="302.50">communicate (subprocess.py:1199)</text></g><g><title>sentry_patched_popen_wait (sentry_sdk/integrations/stdlib.py:233) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="308" width="43.4173%" height="15" fill="rgb(217,207,13)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="318.50">sentry_patched_popen_wait (sentry_sdk/integrations/stdlib.py:233)</text></g><g><title>wait (subprocess.py:1262) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="324" width="43.4173%" height="15" fill="rgb(231,73,38)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="334.50">wait (subprocess.py:1262)</text></g><g><title>_wait (subprocess.py:2013) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="340" width="43.4173%" height="15" fill="rgb(225,20,46)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="350.50">_wait (subprocess.py:2013)</text></g><g><title>_try_wait (subprocess.py:1971) (5,514 samples, 43.42%)</title><rect x="0.0472%" y="356" width="43.4173%" height="15" fill="rgb(210,31,41)" fg:x="6" fg:w="5514"/><text x="0.2972%" y="366.50">_try_wait (subprocess.py:1971)</text></g><g><title>execute (django/core/management/__init__.py:382) (13 samples, 0.10%)</title><rect x="44.2598%" y="148" width="0.1024%" height="15" fill="rgb(221,200,47)" fg:x="5621" fg:w="13"/><text x="44.5098%" y="158.50"></text></g><g><title>__getattr__ (django/conf/__init__.py:102) (13 samples, 0.10%)</title><rect x="44.2598%" y="164" width="0.1024%" height="15" fill="rgb(226,26,5)" fg:x="5621" fg:w="13"/><text x="44.5098%" y="174.50"></text></g><g><title>_setup (django/conf/__init__.py:89) (13 samples, 0.10%)</title><rect x="44.2598%" y="180" width="0.1024%" height="15" fill="rgb(249,33,26)" fg:x="5621" fg:w="13"/><text x="44.5098%" y="190.50"></text></g><g><title>__init__ (django/conf/__init__.py:217) (13 samples, 0.10%)</title><rect x="44.2598%" y="196" width="0.1024%" height="15" fill="rgb(235,183,28)" fg:x="5621" fg:w="13"/><text x="44.5098%" y="206.50"></text></g><g><title>import_module (importlib/__init__.py:126) (13 samples, 0.10%)</title><rect x="44.2598%" y="212" width="0.1024%" height="15" fill="rgb(221,5,38)" fg:x="5621" fg:w="13"/><text x="44.5098%" y="222.50"></text></g><g><title>_gcd_import (&lt;frozen importlib._bootstrap&gt;:1206) (13 samples, 0.10%)</title><rect x="44.2598%" y="228" width="0.1024%" height="15" fill="rgb(247,18,42)" fg:x="5621" fg:w="13"/><text x="44.5098%" y="238.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:1178) (13 samples, 0.10%)</title><rect x="44.2598%" y="244" width="0.1024%" height="15" fill="rgb(241,131,45)" fg:x="5621" fg:w="13"/><text x="44.5098%" y="254.50"></text></g><g><title>resolve (pathlib.py:993) (14 samples, 0.11%)</title><rect x="44.4803%" y="388" width="0.1102%" height="15" fill="rgb(249,31,29)" fg:x="5649" fg:w="14"/><text x="44.7303%" y="398.50"></text></g><g><title>realpath (&lt;frozen posixpath&gt;:416) (14 samples, 0.11%)</title><rect x="44.4803%" y="404" width="0.1102%" height="15" fill="rgb(225,111,53)" fg:x="5649" fg:w="14"/><text x="44.7303%" y="414.50"></text></g><g><title>snapshot_files (django/utils/autoreload.py:411) (27 samples, 0.21%)</title><rect x="44.3858%" y="324" width="0.2126%" height="15" fill="rgb(238,160,17)" fg:x="5637" fg:w="27"/><text x="44.6358%" y="334.50"></text></g><g><title>watched_files (django/utils/autoreload.py:304) (27 samples, 0.21%)</title><rect x="44.3858%" y="340" width="0.2126%" height="15" fill="rgb(214,148,48)" fg:x="5637" fg:w="27"/><text x="44.6358%" y="350.50"></text></g><g><title>iter_all_python_module_files (django/utils/autoreload.py:120) (17 samples, 0.13%)</title><rect x="44.4646%" y="356" width="0.1339%" height="15" fill="rgb(232,36,49)" fg:x="5647" fg:w="17"/><text x="44.7146%" y="366.50"></text></g><g><title>iter_modules_and_files (django/utils/autoreload.py:168) (16 samples, 0.13%)</title><rect x="44.4724%" y="372" width="0.1260%" height="15" fill="rgb(209,103,24)" fg:x="5648" fg:w="16"/><text x="44.7224%" y="382.50"></text></g><g><title>tick (django/utils/autoreload.py:390) (69 samples, 0.54%)</title><rect x="44.3858%" y="308" width="0.5433%" height="15" fill="rgb(229,88,8)" fg:x="5637" fg:w="69"/><text x="44.6358%" y="318.50"></text></g><g><title>snapshot_files (django/utils/autoreload.py:415) (41 samples, 0.32%)</title><rect x="44.6063%" y="324" width="0.3228%" height="15" fill="rgb(213,181,19)" fg:x="5665" fg:w="41"/><text x="44.8563%" y="334.50"></text></g><g><title>stat (pathlib.py:1013) (39 samples, 0.31%)</title><rect x="44.6220%" y="340" width="0.3071%" height="15" fill="rgb(254,191,54)" fg:x="5667" fg:w="39"/><text x="44.8720%" y="350.50"></text></g><g><title>&lt;module&gt; (manage.py:50) (5,448 samples, 42.90%)</title><rect x="44.2598%" y="100" width="42.8976%" height="15" fill="rgb(241,83,37)" fg:x="5621" fg:w="5448"/><text x="44.5098%" y="110.50">&lt;module&gt; (manage.py:50)</text></g><g><title>main (manage.py:18) (5,448 samples, 42.90%)</title><rect x="44.2598%" y="116" width="42.8976%" height="15" fill="rgb(233,36,39)" fg:x="5621" fg:w="5448"/><text x="44.5098%" y="126.50">main (manage.py:18)</text></g><g><title>execute_from_command_line (django/core/management/__init__.py:442) (5,448 samples, 42.90%)</title><rect x="44.2598%" y="132" width="42.8976%" height="15" fill="rgb(226,3,54)" fg:x="5621" fg:w="5448"/><text x="44.5098%" 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,433 samples, 42.78%)</title><rect x="44.3780%" y="148" width="42.7795%" height="15" fill="rgb(245,192,40)" fg:x="5636" fg:w="5433"/><text x="44.6280%" y="158.50">execute (django/core/management/__init__.py:436)</text></g><g><title>run_from_argv (django/core/management/base.py:412) (5,432 samples, 42.77%)</title><rect x="44.3858%" y="164" width="42.7717%" height="15" fill="rgb(238,167,29)" fg:x="5637" fg:w="5432"/><text x="44.6358%" 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,432 samples, 42.77%)</title><rect x="44.3858%" y="180" width="42.7717%" height="15" fill="rgb(232,182,51)" fg:x="5637" fg:w="5432"/><text x="44.6358%" y="190.50">execute (django/core/management/commands/runserver.py:74)</text></g><g><title>execute (django/core/management/base.py:458) (5,432 samples, 42.77%)</title><rect x="44.3858%" y="196" width="42.7717%" height="15" fill="rgb(231,60,39)" fg:x="5637" fg:w="5432"/><text x="44.6358%" y="206.50">execute (django/core/management/base.py:458)</text></g><g><title>handle (django/core/management/commands/runserver.py:111) (5,432 samples, 42.77%)</title><rect x="44.3858%" y="212" width="42.7717%" height="15" fill="rgb(208,69,12)" fg:x="5637" fg:w="5432"/><text x="44.6358%" y="222.50">handle (django/core/management/commands/runserver.py:111)</text></g><g><title>run (django/core/management/commands/runserver.py:118) (5,432 samples, 42.77%)</title><rect x="44.3858%" y="228" width="42.7717%" height="15" fill="rgb(235,93,37)" fg:x="5637" fg:w="5432"/><text x="44.6358%" y="238.50">run (django/core/management/commands/runserver.py:118)</text></g><g><title>run_with_reloader (django/utils/autoreload.py:671) (5,432 samples, 42.77%)</title><rect x="44.3858%" y="244" width="42.7717%" height="15" fill="rgb(213,116,39)" fg:x="5637" fg:w="5432"/><text x="44.6358%" y="254.50">run_with_reloader (django/utils/autoreload.py:671)</text></g><g><title>start_django (django/utils/autoreload.py:660) (5,432 samples, 42.77%)</title><rect x="44.3858%" y="260" width="42.7717%" height="15" fill="rgb(222,207,29)" fg:x="5637" fg:w="5432"/><text x="44.6358%" y="270.50">start_django (django/utils/autoreload.py:660)</text></g><g><title>run (django/utils/autoreload.py:344) (5,432 samples, 42.77%)</title><rect x="44.3858%" y="276" width="42.7717%" height="15" fill="rgb(206,96,30)" fg:x="5637" fg:w="5432"/><text x="44.6358%" y="286.50">run (django/utils/autoreload.py:344)</text></g><g><title>run_loop (django/utils/autoreload.py:350) (5,432 samples, 42.77%)</title><rect x="44.3858%" y="292" width="42.7717%" height="15" fill="rgb(218,138,4)" fg:x="5637" fg:w="5432"/><text x="44.6358%" y="302.50">run_loop (django/utils/autoreload.py:350)</text></g><g><title>tick (django/utils/autoreload.py:405) (5,361 samples, 42.21%)</title><rect x="44.9449%" y="308" width="42.2126%" height="15" fill="rgb(250,191,14)" fg:x="5708" fg:w="5361"/><text x="45.1949%" y="318.50">tick (django/utils/autoreload.py:405)</text></g><g><title>run (sentry_sdk/integrations/threading.py:66) (14 samples, 0.11%)</title><rect x="87.3071%" y="132" width="0.1102%" height="15" fill="rgb(239,60,40)" fg:x="11088" fg:w="14"/><text x="87.5571%" y="142.50"></text></g><g><title>handle_one_request (django/core/servers/basehttp.py:237) (16 samples, 0.13%)</title><rect x="87.6142%" y="228" width="0.1260%" height="15" fill="rgb(206,27,48)" fg:x="11127" fg:w="16"/><text x="87.8642%" y="238.50"></text></g><g><title>readinto (socket.py:706) (13 samples, 0.10%)</title><rect x="87.6378%" y="244" width="0.1024%" height="15" fill="rgb(225,35,8)" fg:x="11130" fg:w="13"/><text x="87.8878%" y="254.50"></text></g><g><title>parse (email/parser.py:56) (29 samples, 0.23%)</title><rect x="87.9528%" y="292" width="0.2283%" height="15" fill="rgb(250,213,24)" fg:x="11170" fg:w="29"/><text x="88.2028%" y="302.50"></text></g><g><title>feed (email/feedparser.py:176) (25 samples, 0.20%)</title><rect x="87.9843%" y="308" width="0.1969%" height="15" fill="rgb(247,123,22)" fg:x="11174" fg:w="25"/><text x="88.2343%" y="318.50"></text></g><g><title>_call_parse (email/feedparser.py:180) (25 samples, 0.20%)</title><rect x="87.9843%" y="324" width="0.1969%" height="15" fill="rgb(231,138,38)" fg:x="11174" fg:w="25"/><text x="88.2343%" y="334.50"></text></g><g><title>parse_request (http/server.py:342) (61 samples, 0.48%)</title><rect x="87.7953%" y="244" width="0.4803%" height="15" fill="rgb(231,145,46)" fg:x="11150" fg:w="61"/><text x="88.0453%" y="254.50"></text></g><g><title>parse_headers (http/client.py:236) (57 samples, 0.45%)</title><rect x="87.8268%" y="260" width="0.4488%" height="15" fill="rgb(251,118,11)" fg:x="11154" fg:w="57"/><text x="88.0768%" y="270.50"></text></g><g><title>parsestr (email/parser.py:67) (54 samples, 0.43%)</title><rect x="87.8504%" y="276" width="0.4252%" height="15" fill="rgb(217,147,25)" fg:x="11157" fg:w="54"/><text x="88.1004%" y="286.50"></text></g><g><title>handle_one_request (django/core/servers/basehttp.py:245) (70 samples, 0.55%)</title><rect x="87.7402%" y="228" width="0.5512%" height="15" fill="rgb(247,81,37)" fg:x="11143" fg:w="70"/><text x="87.9902%" y="238.50"></text></g><g><title>handle_one_request (django/core/servers/basehttp.py:249) (22 samples, 0.17%)</title><rect x="88.3622%" y="228" width="0.1732%" height="15" fill="rgb(209,12,38)" fg:x="11222" fg:w="22"/><text x="88.6122%" y="238.50"></text></g><g><title>get_environ (django/core/servers/basehttp.py:223) (19 samples, 0.15%)</title><rect x="88.3858%" y="244" width="0.1496%" height="15" fill="rgb(227,1,9)" fg:x="11225" fg:w="19"/><text x="88.6358%" y="254.50"></text></g><g><title>finish (sentry_sdk/tracing.py:635) (15 samples, 0.12%)</title><rect x="88.8031%" y="324" width="0.1181%" height="15" fill="rgb(248,47,43)" fg:x="11278" fg:w="15"/><text x="89.0531%" y="334.50"></text></g><g><title>get_trace_context (sentry_sdk/tracing.py:489) (14 samples, 0.11%)</title><rect x="88.8110%" y="340" width="0.1102%" height="15" fill="rgb(221,10,30)" fg:x="11279" fg:w="14"/><text x="89.0610%" y="350.50"></text></g><g><title>__exit__ (sentry_sdk/tracing.py:198) (31 samples, 0.24%)</title><rect x="88.7087%" y="308" width="0.2441%" height="15" fill="rgb(210,229,1)" fg:x="11266" fg:w="31"/><text x="88.9587%" y="318.50"></text></g><g><title>__exit__ (sentry_sdk/tracing.py:567) (33 samples, 0.26%)</title><rect x="88.7008%" y="292" width="0.2598%" height="15" fill="rgb(222,148,37)" fg:x="11265" fg:w="33"/><text x="88.9508%" y="302.50"></text></g><g><title>_set_initial_sampling_decision (sentry_sdk/tracing.py:775) (16 samples, 0.13%)</title><rect x="89.0630%" y="308" width="0.1260%" height="15" fill="rgb(234,67,33)" fg:x="11311" fg:w="16"/><text x="89.3130%" y="318.50"></text></g><g><title>debug (logging/__init__.py:1477) (14 samples, 0.11%)</title><rect x="89.0787%" y="324" width="0.1102%" height="15" fill="rgb(247,98,35)" fg:x="11313" fg:w="14"/><text x="89.3287%" y="334.50"></text></g><g><title>start_transaction (sentry_sdk/hub.py:521) (24 samples, 0.19%)</title><rect x="89.0079%" y="292" width="0.1890%" height="15" fill="rgb(247,138,52)" fg:x="11304" fg:w="24"/><text x="89.2579%" y="302.50"></text></g><g><title>__call__ (sentry_sdk/integrations/wsgi.py:104) (85 samples, 0.67%)</title><rect x="88.6693%" y="276" width="0.6693%" height="15" fill="rgb(213,79,30)" fg:x="11261" fg:w="85"/><text x="88.9193%" y="286.50"></text></g><g><title>__call__ (django/core/handlers/wsgi.py:121) (17 samples, 0.13%)</title><rect x="89.3386%" y="292" width="0.1339%" height="15" fill="rgb(246,177,23)" fg:x="11346" fg:w="17"/><text x="89.5886%" y="302.50"></text></g><g><title>set_script_prefix (django/urls/base.py:106) (13 samples, 0.10%)</title><rect x="89.3701%" y="308" width="0.1024%" height="15" fill="rgb(230,62,27)" fg:x="11350" fg:w="13"/><text x="89.6201%" y="318.50"></text></g><g><title>start_child (sentry_sdk/tracing.py:228) (17 samples, 0.13%)</title><rect x="89.6220%" y="372" width="0.1339%" height="15" fill="rgb(216,154,8)" fg:x="11382" fg:w="17"/><text x="89.8720%" y="382.50"></text></g><g><title>wrapper (sentry_sdk/integrations/django/signals_handlers.py:61) (31 samples, 0.24%)</title><rect x="89.5276%" y="340" width="0.2441%" height="15" fill="rgb(244,35,45)" fg:x="11370" fg:w="31"/><text x="89.7776%" y="350.50"></text></g><g><title>start_span (sentry_sdk/hub.py:472) (21 samples, 0.17%)</title><rect x="89.6063%" y="356" width="0.1654%" height="15" fill="rgb(251,115,12)" fg:x="11380" fg:w="21"/><text x="89.8563%" y="366.50"></text></g><g><title>send (django/dispatch/dispatcher.py:176) (57 samples, 0.45%)</title><rect x="89.4961%" y="308" width="0.4488%" height="15" fill="rgb(240,54,50)" fg:x="11366" fg:w="57"/><text x="89.7461%" y="318.50"></text></g><g><title>&lt;listcomp&gt; (django/dispatch/dispatcher.py:177) (55 samples, 0.43%)</title><rect x="89.5118%" y="324" width="0.4331%" height="15" fill="rgb(233,84,52)" fg:x="11368" fg:w="55"/><text x="89.7618%" y="334.50"></text></g><g><title>wrapper (sentry_sdk/integrations/django/signals_handlers.py:66) (22 samples, 0.17%)</title><rect x="89.7717%" y="340" width="0.1732%" height="15" fill="rgb(207,117,47)" fg:x="11401" fg:w="22"/><text x="90.0217%" y="350.50"></text></g><g><title>reset_queries (django/db/__init__.py:46) (16 samples, 0.13%)</title><rect x="89.8189%" y="356" width="0.1260%" height="15" fill="rgb(249,43,39)" fg:x="11407" fg:w="16"/><text x="90.0689%" y="366.50"></text></g><g><title>all (django/utils/connection.py:76) (16 samples, 0.13%)</title><rect x="89.8189%" y="372" width="0.1260%" height="15" fill="rgb(209,38,44)" fg:x="11407" fg:w="16"/><text x="90.0689%" y="382.50"></text></g><g><title>&lt;listcomp&gt; (django/utils/connection.py:80) (13 samples, 0.10%)</title><rect x="89.8425%" y="388" width="0.1024%" height="15" fill="rgb(236,212,23)" fg:x="11410" fg:w="13"/><text x="90.0925%" y="398.50"></text></g><g><title>__call__ (django/core/handlers/wsgi.py:122) (71 samples, 0.56%)</title><rect x="89.4724%" y="292" width="0.5591%" height="15" fill="rgb(242,79,21)" fg:x="11363" fg:w="71"/><text x="89.7224%" y="302.50"></text></g><g><title>__call__ (django/core/handlers/wsgi.py:123) (16 samples, 0.13%)</title><rect x="90.0315%" y="292" width="0.1260%" height="15" fill="rgb(211,96,35)" fg:x="11434" fg:w="16"/><text x="90.2815%" y="302.50"></text></g><g><title>sentry_patched_get_response (sentry_sdk/integrations/django/__init__.py:430) (19 samples, 0.15%)</title><rect x="90.1575%" y="308" width="0.1496%" height="15" fill="rgb(253,215,40)" fg:x="11450" fg:w="19"/><text x="90.4075%" y="318.50"></text></g><g><title>get_response (django/core/handlers/base.py:139) (18 samples, 0.14%)</title><rect x="90.3150%" y="324" width="0.1417%" height="15" fill="rgb(211,81,21)" fg:x="11470" fg:w="18"/><text x="90.5650%" y="334.50"></text></g><g><title>set_urlconf (django/urls/base.py:134) (15 samples, 0.12%)</title><rect x="90.3386%" y="340" width="0.1181%" height="15" fill="rgb(208,190,38)" fg:x="11473" fg:w="15"/><text x="90.5886%" y="350.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:169) (19 samples, 0.15%)</title><rect x="90.5039%" y="356" width="0.1496%" height="15" fill="rgb(235,213,38)" fg:x="11494" fg:w="19"/><text x="90.7539%" y="366.50"></text></g><g><title>process_request (django/middleware/common.py:48) (17 samples, 0.13%)</title><rect x="91.0394%" y="484" width="0.1339%" height="15" fill="rgb(237,122,38)" fg:x="11562" fg:w="17"/><text x="91.2894%" y="494.50"></text></g><g><title>__call__ (django/utils/deprecation.py:133) (19 samples, 0.15%)</title><rect x="91.0315%" y="468" width="0.1496%" height="15" fill="rgb(244,218,35)" fg:x="11561" fg:w="19"/><text x="91.2815%" y="478.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:169) (24 samples, 0.19%)</title><rect x="91.2047%" y="500" width="0.1890%" height="15" fill="rgb(240,68,47)" fg:x="11583" fg:w="24"/><text x="91.4547%" y="510.50"></text></g><g><title>_check_middleware_span (sentry_sdk/integrations/django/middleware.py:91) (20 samples, 0.16%)</title><rect x="91.2362%" y="516" width="0.1575%" height="15" fill="rgb(210,16,53)" fg:x="11587" fg:w="20"/><text x="91.4862%" y="526.50"></text></g><g><title>start_span (sentry_sdk/hub.py:472) (16 samples, 0.13%)</title><rect x="91.2677%" y="532" width="0.1260%" height="15" fill="rgb(235,124,12)" fg:x="11591" fg:w="16"/><text x="91.5177%" y="542.50"></text></g><g><title>get_cookie_signer (django/core/signing.py:113) (37 samples, 0.29%)</title><rect x="91.8661%" y="708" width="0.2913%" height="15" fill="rgb(224,169,11)" fg:x="11667" fg:w="37"/><text x="92.1161%" y="718.50"></text></g><g><title>__init__ (django/core/signing.py:218) (35 samples, 0.28%)</title><rect x="91.8819%" y="724" width="0.2756%" height="15" fill="rgb(250,166,2)" fg:x="11669" fg:w="35"/><text x="92.1319%" y="734.50"></text></g><g><title>__init__ (django/contrib/messages/storage/fallback.py:16) (50 samples, 0.39%)</title><rect x="91.7953%" y="660" width="0.3937%" height="15" fill="rgb(242,216,29)" fg:x="11658" fg:w="50"/><text x="92.0453%" y="670.50"></text></g><g><title>&lt;listcomp&gt; (django/contrib/messages/storage/fallback.py:17) (50 samples, 0.39%)</title><rect x="91.7953%" y="676" width="0.3937%" height="15" fill="rgb(230,116,27)" fg:x="11658" fg:w="50"/><text x="92.0453%" y="686.50"></text></g><g><title>__init__ (django/contrib/messages/storage/cookie.py:77) (44 samples, 0.35%)</title><rect x="91.8425%" y="692" width="0.3465%" height="15" fill="rgb(228,99,48)" fg:x="11664" fg:w="44"/><text x="92.0925%" y="702.50"></text></g><g><title>__call__ (django/utils/deprecation.py:133) (53 samples, 0.42%)</title><rect x="91.7874%" y="612" width="0.4173%" height="15" fill="rgb(253,11,6)" fg:x="11657" fg:w="53"/><text x="92.0374%" y="622.50"></text></g><g><title>process_request (django/contrib/messages/middleware.py:12) (53 samples, 0.42%)</title><rect x="91.7874%" y="628" width="0.4173%" height="15" fill="rgb(247,143,39)" fg:x="11657" fg:w="53"/><text x="92.0374%" y="638.50"></text></g><g><title>default_storage (django/contrib/messages/storage/__init__.py:12) (53 samples, 0.42%)</title><rect x="91.7874%" y="644" width="0.4173%" height="15" fill="rgb(236,97,10)" fg:x="11657" fg:w="53"/><text x="92.0374%" y="654.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:169) (29 samples, 0.23%)</title><rect x="92.2441%" y="644" width="0.2283%" height="15" fill="rgb(233,208,19)" fg:x="11715" fg:w="29"/><text x="92.4941%" y="654.50"></text></g><g><title>_check_middleware_span (sentry_sdk/integrations/django/middleware.py:91) (18 samples, 0.14%)</title><rect x="92.3307%" y="660" width="0.1417%" height="15" fill="rgb(216,164,2)" fg:x="11726" fg:w="18"/><text x="92.5807%" y="670.50"></text></g><g><title>start_span (sentry_sdk/hub.py:472) (17 samples, 0.13%)</title><rect x="92.3386%" y="676" width="0.1339%" height="15" fill="rgb(220,129,5)" fg:x="11727" fg:w="17"/><text x="92.5886%" y="686.50"></text></g><g><title>start_child (sentry_sdk/tracing.py:228) (17 samples, 0.13%)</title><rect x="92.3386%" y="692" width="0.1339%" height="15" fill="rgb(242,17,10)" fg:x="11727" fg:w="17"/><text x="92.5886%" y="702.50"></text></g><g><title>_get_response (django/core/handlers/base.py:181) (19 samples, 0.15%)</title><rect x="92.5354%" y="692" width="0.1496%" height="15" fill="rgb(242,107,0)" fg:x="11752" fg:w="19"/><text x="92.7854%" y="702.50"></text></g><g><title>resolve_request (django/core/handlers/base.py:313) (14 samples, 0.11%)</title><rect x="92.5748%" y="708" width="0.1102%" height="15" fill="rgb(251,28,31)" fg:x="11757" fg:w="14"/><text x="92.8248%" y="718.50"></text></g><g><title>inner (django/core/handlers/exception.py:55) (70 samples, 0.55%)</title><rect x="92.5276%" y="676" width="0.5512%" height="15" fill="rgb(233,223,10)" fg:x="11751" fg:w="70"/><text x="92.7776%" y="686.50"></text></g><g><title>_get_response (django/core/handlers/base.py:197) (37 samples, 0.29%)</title><rect x="92.7874%" y="692" width="0.2913%" height="15" fill="rgb(215,21,27)" fg:x="11784" fg:w="37"/><text x="93.0374%" y="702.50"></text></g><g><title>page_not_found (django/views/defaults.py:78) (19 samples, 0.15%)</title><rect x="93.2677%" y="740" width="0.1496%" height="15" fill="rgb(232,23,21)" fg:x="11845" fg:w="19"/><text x="93.5177%" y="750.50"></text></g><g><title>response_for_exception (django/core/handlers/exception.py:68) (51 samples, 0.40%)</title><rect x="93.0787%" y="692" width="0.4016%" height="15" fill="rgb(244,5,23)" fg:x="11821" fg:w="51"/><text x="93.3287%" y="702.50"></text></g><g><title>get_exception_response (django/core/handlers/exception.py:164) (50 samples, 0.39%)</title><rect x="93.0866%" y="708" width="0.3937%" height="15" fill="rgb(226,81,46)" fg:x="11822" fg:w="50"/><text x="93.3366%" y="718.50"></text></g><g><title>_wrapper_view (django/utils/decorators.py:134) (48 samples, 0.38%)</title><rect x="93.1024%" y="724" width="0.3780%" height="15" fill="rgb(247,70,30)" fg:x="11824" fg:w="48"/><text x="93.3524%" y="734.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (126 samples, 0.99%)</title><rect x="92.5276%" y="660" width="0.9921%" height="15" fill="rgb(212,68,19)" fg:x="11751" fg:w="126"/><text x="92.7776%" y="670.50"></text></g><g><title>inner (django/core/handlers/exception.py:57) (56 samples, 0.44%)</title><rect x="93.0787%" y="676" width="0.4409%" height="15" fill="rgb(240,187,13)" fg:x="11821" fg:w="56"/><text x="93.3287%" y="686.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (170 samples, 1.34%)</title><rect x="92.2047%" y="612" width="1.3386%" height="15" fill="rgb(223,113,26)" fg:x="11710" fg:w="170"/><text x="92.4547%" y="622.50"></text></g><g><title>inner (django/core/handlers/exception.py:55) (170 samples, 1.34%)</title><rect x="92.2047%" y="628" width="1.3386%" height="15" fill="rgb(206,192,2)" fg:x="11710" fg:w="170"/><text x="92.4547%" y="638.50"></text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (129 samples, 1.02%)</title><rect x="92.5276%" y="644" width="1.0157%" height="15" fill="rgb(241,108,4)" fg:x="11751" fg:w="129"/><text x="92.7776%" y="654.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (264 samples, 2.08%)</title><rect x="91.4724%" y="516" width="2.0787%" height="15" fill="rgb(247,173,49)" fg:x="11617" fg:w="264"/><text x="91.7224%" y="526.50">_..</text></g><g><title>inner (django/core/handlers/exception.py:55) (262 samples, 2.06%)</title><rect x="91.4882%" y="532" width="2.0630%" height="15" fill="rgb(224,114,35)" fg:x="11619" fg:w="262"/><text x="91.7382%" y="542.50">i..</text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (246 samples, 1.94%)</title><rect x="91.6142%" y="548" width="1.9370%" height="15" fill="rgb(245,159,27)" fg:x="11635" fg:w="246"/><text x="91.8642%" y="558.50">_..</text></g><g><title>__call__ (django/utils/deprecation.py:134) (244 samples, 1.92%)</title><rect x="91.6299%" y="564" width="1.9213%" height="15" fill="rgb(245,172,44)" fg:x="11637" fg:w="244"/><text x="91.8799%" y="574.50">_..</text></g><g><title>inner (django/core/handlers/exception.py:55) (244 samples, 1.92%)</title><rect x="91.6299%" y="580" width="1.9213%" height="15" fill="rgb(236,23,11)" fg:x="11637" fg:w="244"/><text x="91.8799%" y="590.50">i..</text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (227 samples, 1.79%)</title><rect x="91.7638%" y="596" width="1.7874%" height="15" fill="rgb(205,117,38)" fg:x="11654" fg:w="227"/><text x="92.0138%" y="606.50">_..</text></g><g><title>__call__ (django/utils/deprecation.py:134) (303 samples, 2.39%)</title><rect x="91.1811%" y="468" width="2.3858%" height="15" fill="rgb(237,72,25)" fg:x="11580" fg:w="303"/><text x="91.4311%" y="478.50">__..</text></g><g><title>inner (django/core/handlers/exception.py:55) (303 samples, 2.39%)</title><rect x="91.1811%" y="484" width="2.3858%" height="15" fill="rgb(244,70,9)" fg:x="11580" fg:w="303"/><text x="91.4311%" y="494.50">in..</text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (274 samples, 2.16%)</title><rect x="91.4094%" y="500" width="2.1575%" height="15" fill="rgb(217,125,39)" fg:x="11609" fg:w="274"/><text x="91.6594%" y="510.50">_..</text></g><g><title>process_response (django/middleware/common.py:107) (15 samples, 0.12%)</title><rect x="93.5669%" y="484" width="0.1181%" height="15" fill="rgb(235,36,10)" fg:x="11883" fg:w="15"/><text x="93.8169%" y="494.50"></text></g><g><title>__call__ (django/utils/deprecation.py:134) (387 samples, 3.05%)</title><rect x="90.7244%" y="372" width="3.0472%" height="15" fill="rgb(251,123,47)" fg:x="11522" fg:w="387"/><text x="90.9744%" y="382.50">__c..</text></g><g><title>inner (django/core/handlers/exception.py:55) (386 samples, 3.04%)</title><rect x="90.7323%" y="388" width="3.0394%" height="15" fill="rgb(221,13,13)" fg:x="11523" fg:w="386"/><text x="90.9823%" y="398.50">inn..</text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (376 samples, 2.96%)</title><rect x="90.8110%" y="404" width="2.9606%" height="15" fill="rgb(238,131,9)" fg:x="11533" fg:w="376"/><text x="91.0610%" y="414.50">__c..</text></g><g><title>__call__ (django/utils/deprecation.py:134) (363 samples, 2.86%)</title><rect x="90.9134%" y="420" width="2.8583%" height="15" fill="rgb(211,50,8)" fg:x="11546" fg:w="363"/><text x="91.1634%" y="430.50">__..</text></g><g><title>inner (django/core/handlers/exception.py:55) (363 samples, 2.86%)</title><rect x="90.9134%" y="436" width="2.8583%" height="15" fill="rgb(245,182,24)" fg:x="11546" fg:w="363"/><text x="91.1634%" y="446.50">in..</text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (351 samples, 2.76%)</title><rect x="91.0079%" y="452" width="2.7638%" height="15" fill="rgb(242,14,37)" fg:x="11558" fg:w="351"/><text x="91.2579%" y="462.50">__..</text></g><g><title>__call__ (django/utils/deprecation.py:136) (26 samples, 0.20%)</title><rect x="93.5669%" y="468" width="0.2047%" height="15" fill="rgb(246,228,12)" fg:x="11883" fg:w="26"/><text x="93.8169%" y="478.50"></text></g><g><title>get_response (django/core/handlers/base.py:140) (428 samples, 3.37%)</title><rect x="90.4567%" y="324" width="3.3701%" height="15" fill="rgb(213,55,15)" fg:x="11488" fg:w="428"/><text x="90.7067%" y="334.50">get..</text></g><g><title>inner (django/core/handlers/exception.py:55) (428 samples, 3.37%)</title><rect x="90.4567%" y="340" width="3.3701%" height="15" fill="rgb(209,9,3)" fg:x="11488" fg:w="428"/><text x="90.7067%" y="350.50">inn..</text></g><g><title>__call__ (sentry_sdk/integrations/django/middleware.py:175) (400 samples, 3.15%)</title><rect x="90.6772%" y="356" width="3.1496%" height="15" fill="rgb(230,59,30)" fg:x="11516" fg:w="400"/><text x="90.9272%" y="366.50">__c..</text></g><g><title>sentry_patched_get_response (sentry_sdk/integrations/django/__init__.py:431) (449 samples, 3.54%)</title><rect x="90.3071%" y="308" width="3.5354%" height="15" fill="rgb(209,121,21)" fg:x="11469" fg:w="449"/><text x="90.5571%" y="318.50">sen..</text></g><g><title>__call__ (django/core/handlers/wsgi.py:124) (481 samples, 3.79%)</title><rect x="90.1575%" y="292" width="3.7874%" height="15" fill="rgb(220,109,13)" fg:x="11450" fg:w="481"/><text x="90.4075%" y="302.50">__ca..</text></g><g><title>sentry_patched_get_response (sentry_sdk/integrations/django/__init__.py:432) (13 samples, 0.10%)</title><rect x="93.8425%" y="308" width="0.1024%" height="15" fill="rgb(232,18,1)" fg:x="11918" fg:w="13"/><text x="94.0925%" y="318.50"></text></g><g><title>__call__ (django/core/handlers/wsgi.py:133) (13 samples, 0.10%)</title><rect x="93.9921%" y="292" width="0.1024%" height="15" fill="rgb(215,41,42)" fg:x="11937" fg:w="13"/><text x="94.2421%" y="302.50"></text></g><g><title>__call__ (sentry_sdk/integrations/wsgi.py:108) (605 samples, 4.76%)</title><rect x="89.3386%" y="276" width="4.7638%" height="15" fill="rgb(224,123,36)" fg:x="11346" fg:w="605"/><text x="89.5886%" y="286.50">__call..</text></g><g><title>__enter__ (contextlib.py:137) (18 samples, 0.14%)</title><rect x="94.1575%" y="292" width="0.1417%" height="15" fill="rgb(240,125,3)" fg:x="11958" fg:w="18"/><text x="94.4075%" y="302.50"></text></g><g><title>auto_session_tracking (sentry_sdk/sessions.py:45) (18 samples, 0.14%)</title><rect x="94.1575%" y="308" width="0.1417%" height="15" fill="rgb(205,98,50)" fg:x="11958" fg:w="18"/><text x="94.4075%" y="318.50"></text></g><g><title>start_session (sentry_sdk/hub.py:650) (14 samples, 0.11%)</title><rect x="94.1890%" y="324" width="0.1102%" height="15" fill="rgb(205,185,37)" fg:x="11962" fg:w="14"/><text x="94.4390%" y="334.50"></text></g><g><title>__exit__ (contextlib.py:144) (15 samples, 0.12%)</title><rect x="94.2992%" y="292" width="0.1181%" height="15" fill="rgb(238,207,15)" fg:x="11976" fg:w="15"/><text x="94.5492%" y="302.50"></text></g><g><title>auto_session_tracking (sentry_sdk/sessions.py:50) (15 samples, 0.12%)</title><rect x="94.2992%" y="308" width="0.1181%" height="15" fill="rgb(213,199,42)" fg:x="11976" fg:w="15"/><text x="94.5492%" y="318.50"></text></g><g><title>end_session (sentry_sdk/hub.py:667) (15 samples, 0.12%)</title><rect x="94.2992%" y="324" width="0.1181%" height="15" fill="rgb(235,201,11)" fg:x="11976" fg:w="15"/><text x="94.5492%" y="334.50"></text></g><g><title>capture_session (sentry_sdk/client.py:554) (15 samples, 0.12%)</title><rect x="94.2992%" y="340" width="0.1181%" height="15" fill="rgb(207,46,11)" fg:x="11976" fg:w="15"/><text x="94.5492%" y="350.50"></text></g><g><title>__call__ (sentry_sdk/integrations/wsgi.py:85) (39 samples, 0.31%)</title><rect x="94.1417%" y="276" width="0.3071%" height="15" fill="rgb(241,35,35)" fg:x="11956" fg:w="39"/><text x="94.3917%" y="286.50"></text></g><g><title>__call__ (sentry_sdk/integrations/wsgi.py:92) (28 samples, 0.22%)</title><rect x="94.5276%" y="276" width="0.2205%" height="15" fill="rgb(243,32,47)" fg:x="12005" fg:w="28"/><text x="94.7776%" y="286.50"></text></g><g><title>_make_wsgi_event_processor (sentry_sdk/integrations/wsgi.py:254) (18 samples, 0.14%)</title><rect x="94.6063%" y="292" width="0.1417%" height="15" fill="rgb(247,202,23)" fg:x="12015" fg:w="18"/><text x="94.8563%" y="302.50"></text></g><g><title>_extract_propagation_context (sentry_sdk/scope.py:130) (25 samples, 0.20%)</title><rect x="94.8189%" y="324" width="0.1969%" height="15" fill="rgb(219,102,11)" fg:x="12042" fg:w="25"/><text x="95.0689%" y="334.50"></text></g><g><title>continue_trace (sentry_sdk/api.py:292) (30 samples, 0.24%)</title><rect x="94.7874%" y="292" width="0.2362%" height="15" fill="rgb(243,110,44)" fg:x="12038" fg:w="30"/><text x="95.0374%" y="302.50"></text></g><g><title>generate_propagation_context (sentry_sdk/scope.py:167) (29 samples, 0.23%)</title><rect x="94.7953%" y="308" width="0.2283%" height="15" fill="rgb(222,74,54)" fg:x="12039" fg:w="29"/><text x="95.0453%" y="318.50"></text></g><g><title>__init__ (sentry_sdk/tracing.py:526) (16 samples, 0.13%)</title><rect x="95.0472%" y="324" width="0.1260%" height="15" fill="rgb(216,99,12)" fg:x="12071" fg:w="16"/><text x="95.2972%" y="334.50"></text></g><g><title>continue_trace (sentry_sdk/api.py:294) (20 samples, 0.16%)</title><rect x="95.0236%" y="292" width="0.1575%" height="15" fill="rgb(226,22,26)" fg:x="12068" fg:w="20"/><text x="95.2736%" y="302.50"></text></g><g><title>continue_from_headers (sentry_sdk/tracing.py:306) (17 samples, 0.13%)</title><rect x="95.0472%" y="308" width="0.1339%" height="15" fill="rgb(217,163,10)" fg:x="12071" fg:w="17"/><text x="95.2972%" y="318.50"></text></g><g><title>run (wsgiref/handlers.py:137) (851 samples, 6.70%)</title><rect x="88.5906%" y="244" width="6.7008%" height="15" fill="rgb(213,25,53)" fg:x="11251" fg:w="851"/><text x="88.8406%" y="254.50">run (wsgi..</text></g><g><title>sentry_patched_wsgi_handler (sentry_sdk/integrations/django/__init__.py:148) (843 samples, 6.64%)</title><rect x="88.6535%" y="260" width="6.6378%" height="15" fill="rgb(252,105,26)" fg:x="11259" fg:w="843"/><text x="88.9035%" y="270.50">sentry_pa..</text></g><g><title>__call__ (sentry_sdk/integrations/wsgi.py:97) (69 samples, 0.54%)</title><rect x="94.7480%" y="276" width="0.5433%" height="15" fill="rgb(220,39,43)" fg:x="12033" fg:w="69"/><text x="94.9980%" y="286.50"></text></g><g><title>continue_trace (sentry_sdk/api.py:295) (14 samples, 0.11%)</title><rect x="95.1811%" y="292" width="0.1102%" height="15" fill="rgb(229,68,48)" fg:x="12088" fg:w="14"/><text x="95.4311%" y="302.50"></text></g><g><title>write (socketserver.py:834) (19 samples, 0.15%)</title><rect x="95.4409%" y="356" width="0.1496%" height="15" fill="rgb(252,8,32)" fg:x="12121" fg:w="19"/><text x="95.6909%" y="366.50"></text></g><g><title>send_preamble (wsgiref/handlers.py:265) (24 samples, 0.19%)</title><rect x="95.4173%" y="324" width="0.1890%" height="15" fill="rgb(223,20,43)" fg:x="12118" fg:w="24"/><text x="95.6673%" y="334.50"></text></g><g><title>_write (wsgiref/handlers.py:466) (23 samples, 0.18%)</title><rect x="95.4252%" y="340" width="0.1811%" height="15" fill="rgb(229,81,49)" fg:x="12119" fg:w="23"/><text x="95.6752%" y="350.50"></text></g><g><title>send_headers (wsgiref/handlers.py:345) (42 samples, 0.33%)</title><rect x="95.4094%" y="308" width="0.3307%" height="15" fill="rgb(236,28,36)" fg:x="12117" fg:w="42"/><text x="95.6594%" y="318.50"></text></g><g><title>write (wsgiref/handlers.py:287) (63 samples, 0.50%)</title><rect x="95.3386%" y="292" width="0.4961%" height="15" fill="rgb(249,185,26)" fg:x="12108" fg:w="63"/><text x="95.5886%" y="302.50"></text></g><g><title>finish_response (wsgiref/handlers.py:184) (73 samples, 0.57%)</title><rect x="95.3307%" y="276" width="0.5748%" height="15" fill="rgb(249,174,33)" fg:x="12107" fg:w="73"/><text x="95.5807%" y="286.50"></text></g><g><title>emit (logging/__init__.py:1113) (18 samples, 0.14%)</title><rect x="96.3307%" y="452" width="0.1417%" height="15" fill="rgb(233,201,37)" fg:x="12234" fg:w="18"/><text x="96.5807%" y="462.50"></text></g><g><title>close (wsgiref/simple_server.py:34) (72 samples, 0.57%)</title><rect x="95.9213%" y="308" width="0.5669%" height="15" fill="rgb(221,78,26)" fg:x="12182" fg:w="72"/><text x="96.1713%" y="318.50"></text></g><g><title>log_request (http/server.py:549) (71 samples, 0.56%)</title><rect x="95.9291%" y="324" width="0.5591%" height="15" fill="rgb(250,127,30)" fg:x="12183" fg:w="71"/><text x="96.1791%" y="334.50"></text></g><g><title>log_message (django/core/servers/basehttp.py:212) (61 samples, 0.48%)</title><rect x="96.0079%" y="340" width="0.4803%" height="15" fill="rgb(230,49,44)" fg:x="12193" fg:w="61"/><text x="96.2579%" y="350.50"></text></g><g><title>info (logging/__init__.py:1489) (58 samples, 0.46%)</title><rect x="96.0315%" y="356" width="0.4567%" height="15" fill="rgb(229,67,23)" fg:x="12196" fg:w="58"/><text x="96.2815%" y="366.50"></text></g><g><title>_log (logging/__init__.py:1634) (34 samples, 0.27%)</title><rect x="96.2205%" y="372" width="0.2677%" height="15" fill="rgb(249,83,47)" fg:x="12220" fg:w="34"/><text x="96.4705%" y="382.50"></text></g><g><title>handle (logging/__init__.py:1644) (34 samples, 0.27%)</title><rect x="96.2205%" y="388" width="0.2677%" height="15" fill="rgb(215,43,3)" fg:x="12220" fg:w="34"/><text x="96.4705%" y="398.50"></text></g><g><title>sentry_patched_callhandlers (sentry_sdk/integrations/logging.py:96) (34 samples, 0.27%)</title><rect x="96.2205%" y="404" width="0.2677%" height="15" fill="rgb(238,154,13)" fg:x="12220" fg:w="34"/><text x="96.4705%" y="414.50"></text></g><g><title>callHandlers (logging/__init__.py:1706) (34 samples, 0.27%)</title><rect x="96.2205%" y="420" width="0.2677%" height="15" fill="rgb(219,56,2)" fg:x="12220" fg:w="34"/><text x="96.4705%" y="430.50"></text></g><g><title>handle (logging/__init__.py:978) (32 samples, 0.25%)</title><rect x="96.2362%" y="436" width="0.2520%" height="15" fill="rgb(233,0,4)" fg:x="12222" fg:w="32"/><text x="96.4862%" y="446.50"></text></g><g><title>__init__ (sentry_sdk/tracing.py:133) (24 samples, 0.19%)</title><rect x="96.7480%" y="436" width="0.1890%" height="15" fill="rgb(235,30,7)" fg:x="12287" fg:w="24"/><text x="96.9980%" y="446.50"></text></g><g><title>uuid4 (uuid.py:723) (22 samples, 0.17%)</title><rect x="96.7638%" y="452" width="0.1732%" height="15" fill="rgb(250,79,13)" fg:x="12289" fg:w="22"/><text x="97.0138%" y="462.50"></text></g><g><title>__init__ (sentry_sdk/tracing.py:134) (17 samples, 0.13%)</title><rect x="96.9370%" y="436" width="0.1339%" height="15" fill="rgb(211,146,34)" fg:x="12311" fg:w="17"/><text x="97.1870%" y="446.50"></text></g><g><title>uuid4 (uuid.py:723) (16 samples, 0.13%)</title><rect x="96.9449%" y="452" width="0.1260%" height="15" fill="rgb(228,22,38)" fg:x="12312" fg:w="16"/><text x="97.1949%" y="462.50"></text></g><g><title>wrapper (sentry_sdk/integrations/django/signals_handlers.py:61) (71 samples, 0.56%)</title><rect x="96.5669%" y="404" width="0.5591%" height="15" fill="rgb(235,168,5)" fg:x="12264" fg:w="71"/><text x="96.8169%" y="414.50"></text></g><g><title>start_span (sentry_sdk/hub.py:474) (49 samples, 0.39%)</title><rect x="96.7402%" y="420" width="0.3858%" height="15" fill="rgb(221,155,16)" fg:x="12286" fg:w="49"/><text x="96.9902%" y="430.50"></text></g><g><title>close_caches (django/core/cache/__init__.py:63) (15 samples, 0.12%)</title><rect x="97.1496%" y="420" width="0.1181%" height="15" fill="rgb(215,215,53)" fg:x="12338" fg:w="15"/><text x="97.3996%" y="430.50"></text></g><g><title>close_all (django/utils/connection.py:84) (15 samples, 0.12%)</title><rect x="97.1496%" y="436" width="0.1181%" height="15" fill="rgb(223,4,10)" fg:x="12338" fg:w="15"/><text x="97.3996%" y="446.50"></text></g><g><title>send (django/dispatch/dispatcher.py:176) (124 samples, 0.98%)</title><rect x="96.5276%" y="372" width="0.9764%" height="15" fill="rgb(234,103,6)" fg:x="12259" fg:w="124"/><text x="96.7776%" y="382.50"></text></g><g><title>&lt;listcomp&gt; (django/dispatch/dispatcher.py:177) (124 samples, 0.98%)</title><rect x="96.5276%" y="388" width="0.9764%" height="15" fill="rgb(227,97,0)" fg:x="12259" fg:w="124"/><text x="96.7776%" y="398.50"></text></g><g><title>wrapper (sentry_sdk/integrations/django/signals_handlers.py:66) (47 samples, 0.37%)</title><rect x="97.1339%" y="404" width="0.3701%" height="15" fill="rgb(234,150,53)" fg:x="12336" fg:w="47"/><text x="97.3839%" y="414.50"></text></g><g><title>reset_urlconf (django/core/handlers/base.py:370) (19 samples, 0.15%)</title><rect x="97.3543%" y="420" width="0.1496%" height="15" fill="rgb(228,201,54)" fg:x="12364" fg:w="19"/><text x="97.6043%" y="430.50"></text></g><g><title>close (wsgiref/handlers.py:334) (142 samples, 1.12%)</title><rect x="96.4961%" y="324" width="1.1181%" height="15" fill="rgb(222,22,37)" fg:x="12255" fg:w="142"/><text x="96.7461%" y="334.50"></text></g><g><title>close (sentry_sdk/integrations/wsgi.py:228) (141 samples, 1.11%)</title><rect x="96.5039%" y="340" width="1.1102%" height="15" fill="rgb(237,53,32)" fg:x="12256" fg:w="141"/><text x="96.7539%" y="350.50"></text></g><g><title>close (django/http/response.py:335) (138 samples, 1.09%)</title><rect x="96.5276%" y="356" width="1.0866%" height="15" fill="rgb(233,25,53)" fg:x="12259" fg:w="138"/><text x="96.7776%" y="366.50"></text></g><g><title>send (django/dispatch/dispatcher.py:178) (14 samples, 0.11%)</title><rect x="97.5039%" y="372" width="0.1102%" height="15" fill="rgb(210,40,34)" fg:x="12383" fg:w="14"/><text x="97.7539%" y="382.50"></text></g><g><title>handle (django/core/servers/basehttp.py:227) (1,273 samples, 10.02%)</title><rect x="87.6063%" y="212" width="10.0236%" height="15" fill="rgb(241,220,44)" fg:x="11126" fg:w="1273"/><text x="87.8563%" y="222.50">handle (django..</text></g><g><title>handle_one_request (django/core/servers/basehttp.py:252) (1,155 samples, 9.09%)</title><rect x="88.5354%" y="228" width="9.0945%" height="15" fill="rgb(235,28,35)" fg:x="11244" fg:w="1155"/><text x="88.7854%" y="238.50">handle_one_re..</text></g><g><title>run (wsgiref/handlers.py:138) (297 samples, 2.34%)</title><rect x="95.2913%" y="244" width="2.3386%" height="15" fill="rgb(210,56,17)" fg:x="12102" fg:w="297"/><text x="95.5413%" y="254.50">r..</text></g><g><title>finish_response (django/core/servers/basehttp.py:173) (297 samples, 2.34%)</title><rect x="95.2913%" y="260" width="2.3386%" height="15" fill="rgb(224,130,29)" fg:x="12102" fg:w="297"/><text x="95.5413%" y="270.50">f..</text></g><g><title>finish_response (wsgiref/handlers.py:196) (219 samples, 1.72%)</title><rect x="95.9055%" y="276" width="1.7244%" height="15" fill="rgb(235,212,8)" fg:x="12180" fg:w="219"/><text x="96.1555%" y="286.50"></text></g><g><title>close (django/core/servers/basehttp.py:157) (217 samples, 1.71%)</title><rect x="95.9213%" y="292" width="1.7087%" height="15" fill="rgb(223,33,50)" fg:x="12182" fg:w="217"/><text x="96.1713%" y="302.50"></text></g><g><title>close (wsgiref/simple_server.py:38) (144 samples, 1.13%)</title><rect x="96.4961%" y="308" width="1.1339%" height="15" fill="rgb(219,149,13)" fg:x="12255" fg:w="144"/><text x="96.7461%" y="318.50"></text></g><g><title>handle (django/core/servers/basehttp.py:229) (78 samples, 0.61%)</title><rect x="97.6299%" y="212" width="0.6142%" height="15" fill="rgb(250,156,29)" fg:x="12399" fg:w="78"/><text x="97.8799%" y="222.50"></text></g><g><title>handle_one_request (django/core/servers/basehttp.py:237) (78 samples, 0.61%)</title><rect x="97.6299%" y="228" width="0.6142%" height="15" fill="rgb(216,193,19)" fg:x="12399" fg:w="78"/><text x="97.8799%" y="238.50"></text></g><g><title>readinto (socket.py:706) (75 samples, 0.59%)</title><rect x="97.6535%" y="244" width="0.5906%" height="15" fill="rgb(216,135,14)" fg:x="12402" fg:w="75"/><text x="97.9035%" y="254.50"></text></g><g><title>__init__ (socketserver.py:755) (1,362 samples, 10.72%)</title><rect x="87.6063%" y="196" width="10.7244%" height="15" fill="rgb(241,47,5)" fg:x="11126" fg:w="1362"/><text x="87.8563%" y="206.50">__init__ (socket..</text></g><g><title>process_request_thread (socketserver.py:691) (1,386 samples, 10.91%)</title><rect x="87.4882%" y="164" width="10.9134%" height="15" fill="rgb(233,42,35)" fg:x="11111" fg:w="1386"/><text x="87.7382%" y="174.50">process_request_..</text></g><g><title>finish_request (socketserver.py:361) (1,386 samples, 10.91%)</title><rect x="87.4882%" y="180" width="10.9134%" height="15" fill="rgb(231,13,6)" fg:x="11111" fg:w="1386"/><text x="87.7382%" y="190.50">finish_request (..</text></g><g><title>accept (socket.py:295) (14 samples, 0.11%)</title><rect x="98.5748%" y="260" width="0.1102%" height="15" fill="rgb(207,181,40)" fg:x="12519" fg:w="14"/><text x="98.8248%" y="270.50"></text></g><g><title>_handle_request_noblock (socketserver.py:312) (25 samples, 0.20%)</title><rect x="98.4961%" y="228" width="0.1969%" height="15" fill="rgb(254,173,49)" fg:x="12509" fg:w="25"/><text x="98.7461%" y="238.50"></text></g><g><title>get_request (socketserver.py:505) (25 samples, 0.20%)</title><rect x="98.4961%" y="244" width="0.1969%" height="15" fill="rgb(221,1,38)" fg:x="12509" fg:w="25"/><text x="98.7461%" y="254.50"></text></g><g><title>__init__ (threading.py:898) (28 samples, 0.22%)</title><rect x="98.8504%" y="260" width="0.2205%" height="15" fill="rgb(206,124,46)" fg:x="12554" fg:w="28"/><text x="99.1004%" y="270.50"></text></g><g><title>__init__ (threading.py:556) (26 samples, 0.20%)</title><rect x="98.8661%" y="276" width="0.2047%" height="15" fill="rgb(249,21,11)" fg:x="12556" fg:w="26"/><text x="99.1161%" y="286.50"></text></g><g><title>process_request (socketserver.py:701) (49 samples, 0.39%)</title><rect x="98.7402%" y="244" width="0.3858%" height="15" fill="rgb(222,201,40)" fg:x="12540" fg:w="49"/><text x="98.9902%" y="254.50"></text></g><g><title>sentry_start (sentry_sdk/integrations/threading.py:53) (15 samples, 0.12%)</title><rect x="99.3150%" y="260" width="0.1181%" height="15" fill="rgb(235,61,29)" fg:x="12613" fg:w="15"/><text x="99.5650%" y="270.50"></text></g><g><title>start (threading.py:957) (56 samples, 0.44%)</title><rect x="99.4567%" y="276" width="0.4409%" height="15" fill="rgb(219,207,3)" fg:x="12631" fg:w="56"/><text x="99.7067%" y="286.50"></text></g><g><title>serve_forever (socketserver.py:238) (183 samples, 1.44%)</title><rect x="98.4961%" y="212" width="1.4409%" height="15" fill="rgb(222,56,46)" fg:x="12509" fg:w="183"/><text x="98.7461%" y="222.50"></text></g><g><title>_handle_request_noblock (socketserver.py:317) (158 samples, 1.24%)</title><rect x="98.6929%" y="228" width="1.2441%" height="15" fill="rgb(239,76,54)" fg:x="12534" fg:w="158"/><text x="98.9429%" y="238.50"></text></g><g><title>process_request (socketserver.py:705) (90 samples, 0.71%)</title><rect x="99.2283%" y="244" width="0.7087%" height="15" fill="rgb(231,124,27)" fg:x="12602" fg:w="90"/><text x="99.4783%" y="254.50"></text></g><g><title>sentry_start (sentry_sdk/integrations/threading.py:56) (63 samples, 0.50%)</title><rect x="99.4409%" y="260" width="0.4961%" height="15" fill="rgb(249,195,6)" fg:x="12629" fg:w="63"/><text x="99.6909%" y="270.50"></text></g><g><title>run (threading.py:975) (1,584 samples, 12.47%)</title><rect x="87.4724%" y="148" width="12.4724%" height="15" fill="rgb(237,174,47)" fg:x="11109" fg:w="1584"/><text x="87.7224%" y="158.50">run (threading.py:9..</text></g><g><title>wrapper (django/utils/autoreload.py:64) (185 samples, 1.46%)</title><rect x="98.4882%" y="164" width="1.4567%" height="15" fill="rgb(206,201,31)" fg:x="12508" fg:w="185"/><text x="98.7382%" y="174.50"></text></g><g><title>inner_run (django/core/management/commands/runserver.py:140) (185 samples, 1.46%)</title><rect x="98.4882%" y="180" width="1.4567%" height="15" fill="rgb(231,57,52)" fg:x="12508" fg:w="185"/><text x="98.7382%" y="190.50"></text></g><g><title>run (django/core/servers/basehttp.py:281) (185 samples, 1.46%)</title><rect x="98.4882%" y="196" width="1.4567%" height="15" fill="rgb(248,177,22)" fg:x="12508" fg:w="185"/><text x="98.7382%" y="206.50"></text></g><g><title>_bootstrap_inner (threading.py:1038) (1,606 samples, 12.65%)</title><rect x="87.3071%" y="116" width="12.6457%" height="15" fill="rgb(215,211,37)" fg:x="11088" fg:w="1606"/><text x="87.5571%" y="126.50">_bootstrap_inner (t..</text></g><g><title>run (sentry_sdk/integrations/threading.py:70) (1,586 samples, 12.49%)</title><rect x="87.4646%" y="132" width="12.4882%" height="15" fill="rgb(241,128,51)" fg:x="11108" fg:w="1586"/><text x="87.7146%" y="142.50">run (sentry_sdk/int..</text></g><g><title>_bootstrap (threading.py:995) (1,626 samples, 12.80%)</title><rect x="87.1654%" y="100" width="12.8031%" height="15" fill="rgb(227,165,31)" fg:x="11070" fg:w="1626"/><text x="87.4154%" y="110.50">_bootstrap (threadi..</text></g><g><title>all (12,700 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(228,167,24)" fg:x="0" fg:w="12700"/><text x="0.2500%" y="62.50"></text></g><g><title>process 17706:&quot;python ./manage.py runserver&quot; (12,700 samples, 100.00%)</title><rect x="0.0000%" y="68" width="100.0000%" height="15" fill="rgb(228,143,12)" fg:x="0" fg:w="12700"/><text x="0.2500%" y="78.50">process 17706:&quot;python ./manage.py runserver&quot;</text></g><g><title>process 17708:&quot;/Users/ivana/dev/django/django.env/bin/python ./manage.py runserver&quot; (7,180 samples, 56.54%)</title><rect x="43.4646%" y="84" width="56.5354%" height="15" fill="rgb(249,149,8)" fg:x="5520" fg:w="7180"/><text x="43.7146%" y="94.50">process 17708:&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