summaryrefslogtreecommitdiffstats
path: root/docs/_static/glances-flame.svg
blob: 5ab6b70a6a610416fedf2a1d42e3ed5904379bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
<?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="650" onload="init(evt)" viewBox="0 0 1200 650" 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="650" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">./venv/bin/py-spy record -o ./docs/_static/glances-flame.svg -d 60 -s --pid 229330</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="639.00"> </text><svg id="frames" x="10" width="1180" total_samples="729"><g><title>run (glances/plugins/glances_ports.py:224) (1 samples, 0.14%)</title><rect x="0.0000%" y="116" width="0.1372%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="1"/><text x="0.2500%" y="126.50"></text></g><g><title>_port_scan (glances/plugins/glances_ports.py:273) (1 samples, 0.14%)</title><rect x="0.0000%" y="132" width="0.1372%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="1"/><text x="0.2500%" y="142.50"></text></g><g><title>_port_scan_icmp (glances/plugins/glances_ports.py:317) (1 samples, 0.14%)</title><rect x="0.0000%" y="148" width="0.1372%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="1"/><text x="0.2500%" y="158.50"></text></g><g><title>check_call (subprocess.py:364) (1 samples, 0.14%)</title><rect x="0.0000%" y="164" width="0.1372%" height="15" fill="rgb(248,212,6)" fg:x="0" fg:w="1"/><text x="0.2500%" y="174.50"></text></g><g><title>call (subprocess.py:347) (1 samples, 0.14%)</title><rect x="0.0000%" y="180" width="0.1372%" height="15" fill="rgb(208,68,35)" fg:x="0" fg:w="1"/><text x="0.2500%" y="190.50"></text></g><g><title>wait (subprocess.py:1207) (1 samples, 0.14%)</title><rect x="0.0000%" y="196" width="0.1372%" height="15" fill="rgb(232,128,0)" fg:x="0" fg:w="1"/><text x="0.2500%" y="206.50"></text></g><g><title>_wait (subprocess.py:1941) (1 samples, 0.14%)</title><rect x="0.0000%" y="212" width="0.1372%" height="15" fill="rgb(207,160,47)" fg:x="0" fg:w="1"/><text x="0.2500%" y="222.50"></text></g><g><title>_try_wait (subprocess.py:1899) (1 samples, 0.14%)</title><rect x="0.0000%" y="228" width="0.1372%" height="15" fill="rgb(228,23,34)" fg:x="0" fg:w="1"/><text x="0.2500%" y="238.50"></text></g><g><title>prepare_url (requests/models.py:428) (1 samples, 0.14%)</title><rect x="0.1372%" y="260" width="0.1372%" height="15" fill="rgb(218,30,26)" fg:x="1" fg:w="1"/><text x="0.3872%" y="270.50"></text></g><g><title>prepare_url (requests/models.py:434) (1 samples, 0.14%)</title><rect x="0.2743%" y="260" width="0.1372%" height="15" fill="rgb(220,122,19)" fg:x="2" fg:w="1"/><text x="0.5243%" y="270.50"></text></g><g><title>parse_url (urllib3/util/url.py:419) (1 samples, 0.14%)</title><rect x="0.2743%" y="276" width="0.1372%" height="15" fill="rgb(250,228,42)" fg:x="2" fg:w="1"/><text x="0.5243%" y="286.50"></text></g><g><title>__new__ (urllib3/util/url.py:105) (1 samples, 0.14%)</title><rect x="0.2743%" y="292" width="0.1372%" height="15" fill="rgb(240,193,28)" fg:x="2" fg:w="1"/><text x="0.5243%" y="302.50"></text></g><g><title>prepare (requests/models.py:368) (3 samples, 0.41%)</title><rect x="0.1372%" y="244" width="0.4115%" height="15" fill="rgb(216,20,37)" fg:x="1" fg:w="3"/><text x="0.3872%" y="254.50"></text></g><g><title>prepare_url (requests/models.py:482) (1 samples, 0.14%)</title><rect x="0.4115%" y="260" width="0.1372%" height="15" fill="rgb(206,188,39)" fg:x="3" fg:w="1"/><text x="0.6615%" y="270.50"></text></g><g><title>requote_uri (requests/utils.py:673) (1 samples, 0.14%)</title><rect x="0.4115%" y="276" width="0.1372%" height="15" fill="rgb(217,207,13)" fg:x="3" fg:w="1"/><text x="0.6615%" y="286.50"></text></g><g><title>unquote_unreserved (requests/utils.py:646) (1 samples, 0.14%)</title><rect x="0.4115%" y="292" width="0.1372%" height="15" fill="rgb(231,73,38)" fg:x="3" fg:w="1"/><text x="0.6615%" y="302.50"></text></g><g><title>prepare_request (requests/sessions.py:484) (4 samples, 0.55%)</title><rect x="0.1372%" y="228" width="0.5487%" height="15" fill="rgb(225,20,46)" fg:x="1" fg:w="4"/><text x="0.3872%" y="238.50"></text></g><g><title>prepare (requests/models.py:369) (1 samples, 0.14%)</title><rect x="0.5487%" y="244" width="0.1372%" height="15" fill="rgb(210,31,41)" fg:x="4" fg:w="1"/><text x="0.7987%" y="254.50"></text></g><g><title>prepare_headers (requests/models.py:487) (1 samples, 0.14%)</title><rect x="0.5487%" y="260" width="0.1372%" height="15" fill="rgb(221,200,47)" fg:x="4" fg:w="1"/><text x="0.7987%" y="270.50"></text></g><g><title>__init__ (requests/structures.py:44) (1 samples, 0.14%)</title><rect x="0.5487%" y="276" width="0.1372%" height="15" fill="rgb(226,26,5)" fg:x="4" fg:w="1"/><text x="0.7987%" y="286.50"></text></g><g><title>update (_collections_abc.py:993) (1 samples, 0.14%)</title><rect x="0.5487%" y="292" width="0.1372%" height="15" fill="rgb(249,33,26)" fg:x="4" fg:w="1"/><text x="0.7987%" y="302.50"></text></g><g><title>__init__ (requests/structures.py:41) (1 samples, 0.14%)</title><rect x="0.6859%" y="260" width="0.1372%" height="15" fill="rgb(235,183,28)" fg:x="5" fg:w="1"/><text x="0.9359%" y="270.50"></text></g><g><title>request (requests/sessions.py:573) (6 samples, 0.82%)</title><rect x="0.1372%" y="212" width="0.8230%" height="15" fill="rgb(221,5,38)" fg:x="1" fg:w="6"/><text x="0.3872%" y="222.50"></text></g><g><title>prepare_request (requests/sessions.py:490) (2 samples, 0.27%)</title><rect x="0.6859%" y="228" width="0.2743%" height="15" fill="rgb(247,18,42)" fg:x="5" fg:w="2"/><text x="0.9359%" y="238.50"></text></g><g><title>merge_setting (requests/sessions.py:79) (2 samples, 0.27%)</title><rect x="0.6859%" y="244" width="0.2743%" height="15" fill="rgb(241,131,45)" fg:x="5" fg:w="2"/><text x="0.9359%" y="254.50"></text></g><g><title>to_key_val_list (requests/utils.py:364) (1 samples, 0.14%)</title><rect x="0.8230%" y="260" width="0.1372%" height="15" fill="rgb(249,31,29)" fg:x="6" fg:w="1"/><text x="1.0730%" y="270.50"></text></g><g><title>items (_collections_abc.py:837) (1 samples, 0.14%)</title><rect x="0.8230%" y="276" width="0.1372%" height="15" fill="rgb(225,111,53)" fg:x="6" fg:w="1"/><text x="1.0730%" y="286.50"></text></g><g><title>request (requests/sessions.py:577) (1 samples, 0.14%)</title><rect x="0.9602%" y="212" width="0.1372%" height="15" fill="rgb(238,160,17)" fg:x="7" fg:w="1"/><text x="1.2102%" y="222.50"></text></g><g><title>merge_environment_settings (requests/sessions.py:759) (1 samples, 0.14%)</title><rect x="0.9602%" y="228" width="0.1372%" height="15" fill="rgb(214,148,48)" fg:x="7" fg:w="1"/><text x="1.2102%" y="238.50"></text></g><g><title>get_environ_proxies (requests/utils.py:833) (1 samples, 0.14%)</title><rect x="0.9602%" y="244" width="0.1372%" height="15" fill="rgb(232,36,49)" fg:x="7" fg:w="1"/><text x="1.2102%" y="254.50"></text></g><g><title>getproxies_environment (urllib/request.py:2500) (1 samples, 0.14%)</title><rect x="0.9602%" y="260" width="0.1372%" height="15" fill="rgb(209,103,24)" fg:x="7" fg:w="1"/><text x="1.2102%" y="270.50"></text></g><g><title>__iter__ (_collections_abc.py:906) (1 samples, 0.14%)</title><rect x="0.9602%" y="276" width="0.1372%" height="15" fill="rgb(229,88,8)" fg:x="7" fg:w="1"/><text x="1.2102%" y="286.50"></text></g><g><title>__getitem__ (os.py:676) (1 samples, 0.14%)</title><rect x="0.9602%" y="292" width="0.1372%" height="15" fill="rgb(213,181,19)" fg:x="7" fg:w="1"/><text x="1.2102%" y="302.50"></text></g><g><title>_make_request (urllib3/connectionpool.py:403) (1 samples, 0.14%)</title><rect x="1.0974%" y="276" width="0.1372%" height="15" fill="rgb(254,191,54)" fg:x="8" fg:w="1"/><text x="1.3474%" y="286.50"></text></g><g><title>request (http/client.py:1282) (1 samples, 0.14%)</title><rect x="1.0974%" y="292" width="0.1372%" height="15" fill="rgb(241,83,37)" fg:x="8" fg:w="1"/><text x="1.3474%" y="302.50"></text></g><g><title>_send_request (http/client.py:1328) (1 samples, 0.14%)</title><rect x="1.0974%" y="308" width="0.1372%" height="15" fill="rgb(233,36,39)" fg:x="8" fg:w="1"/><text x="1.3474%" y="318.50"></text></g><g><title>endheaders (http/client.py:1277) (1 samples, 0.14%)</title><rect x="1.0974%" y="324" width="0.1372%" height="15" fill="rgb(226,3,54)" fg:x="8" fg:w="1"/><text x="1.3474%" y="334.50"></text></g><g><title>_send_output (http/client.py:1037) (1 samples, 0.14%)</title><rect x="1.0974%" y="340" width="0.1372%" height="15" fill="rgb(245,192,40)" fg:x="8" fg:w="1"/><text x="1.3474%" y="350.50"></text></g><g><title>send (http/client.py:998) (1 samples, 0.14%)</title><rect x="1.0974%" y="356" width="0.1372%" height="15" fill="rgb(238,167,29)" fg:x="8" fg:w="1"/><text x="1.3474%" y="366.50"></text></g><g><title>_parsegen (email/feedparser.py:256) (1 samples, 0.14%)</title><rect x="1.2346%" y="404" width="0.1372%" height="15" fill="rgb(232,182,51)" fg:x="9" fg:w="1"/><text x="1.4846%" y="414.50"></text></g><g><title>get_content_type (email/message.py:584) (1 samples, 0.14%)</title><rect x="1.2346%" y="420" width="0.1372%" height="15" fill="rgb(231,60,39)" fg:x="9" fg:w="1"/><text x="1.4846%" y="430.50"></text></g><g><title>parse (email/parser.py:56) (2 samples, 0.27%)</title><rect x="1.2346%" y="356" width="0.2743%" height="15" fill="rgb(208,69,12)" fg:x="9" fg:w="2"/><text x="1.4846%" y="366.50"></text></g><g><title>feed (email/feedparser.py:176) (2 samples, 0.27%)</title><rect x="1.2346%" y="372" width="0.2743%" height="15" fill="rgb(235,93,37)" fg:x="9" fg:w="2"/><text x="1.4846%" y="382.50"></text></g><g><title>_call_parse (email/feedparser.py:180) (2 samples, 0.27%)</title><rect x="1.2346%" y="388" width="0.2743%" height="15" fill="rgb(213,116,39)" fg:x="9" fg:w="2"/><text x="1.4846%" y="398.50"></text></g><g><title>_parsegen (email/feedparser.py:465) (1 samples, 0.14%)</title><rect x="1.3717%" y="404" width="0.1372%" height="15" fill="rgb(222,207,29)" fg:x="10" fg:w="1"/><text x="1.6217%" y="414.50"></text></g><g><title>send (requests/adapters.py:500) (4 samples, 0.55%)</title><rect x="1.0974%" y="244" width="0.5487%" height="15" fill="rgb(206,96,30)" fg:x="8" fg:w="4"/><text x="1.3474%" y="254.50"></text></g><g><title>urlopen (urllib3/connectionpool.py:703) (4 samples, 0.55%)</title><rect x="1.0974%" y="260" width="0.5487%" height="15" fill="rgb(218,138,4)" fg:x="8" fg:w="4"/><text x="1.3474%" y="270.50"></text></g><g><title>_make_request (urllib3/connectionpool.py:445) (3 samples, 0.41%)</title><rect x="1.2346%" y="276" width="0.4115%" height="15" fill="rgb(250,191,14)" fg:x="9" fg:w="3"/><text x="1.4846%" y="286.50"></text></g><g><title>getresponse (http/client.py:1374) (3 samples, 0.41%)</title><rect x="1.2346%" y="292" width="0.4115%" height="15" fill="rgb(239,60,40)" fg:x="9" fg:w="3"/><text x="1.4846%" y="302.50"></text></g><g><title>begin (http/client.py:337) (3 samples, 0.41%)</title><rect x="1.2346%" y="308" width="0.4115%" height="15" fill="rgb(206,27,48)" fg:x="9" fg:w="3"/><text x="1.4846%" y="318.50"></text></g><g><title>parse_headers (http/client.py:236) (3 samples, 0.41%)</title><rect x="1.2346%" y="324" width="0.4115%" height="15" fill="rgb(225,35,8)" fg:x="9" fg:w="3"/><text x="1.4846%" y="334.50"></text></g><g><title>parsestr (email/parser.py:67) (3 samples, 0.41%)</title><rect x="1.2346%" y="340" width="0.4115%" height="15" fill="rgb(250,213,24)" fg:x="9" fg:w="3"/><text x="1.4846%" y="350.50"></text></g><g><title>parse (email/parser.py:57) (1 samples, 0.14%)</title><rect x="1.5089%" y="356" width="0.1372%" height="15" fill="rgb(247,123,22)" fg:x="11" fg:w="1"/><text x="1.7589%" y="366.50"></text></g><g><title>close (email/feedparser.py:187) (1 samples, 0.14%)</title><rect x="1.5089%" y="372" width="0.1372%" height="15" fill="rgb(231,138,38)" fg:x="11" fg:w="1"/><text x="1.7589%" y="382.50"></text></g><g><title>_call_parse (email/feedparser.py:180) (1 samples, 0.14%)</title><rect x="1.5089%" y="388" width="0.1372%" height="15" fill="rgb(231,145,46)" fg:x="11" fg:w="1"/><text x="1.7589%" y="398.50"></text></g><g><title>_parsegen (email/feedparser.py:469) (1 samples, 0.14%)</title><rect x="1.5089%" y="404" width="0.1372%" height="15" fill="rgb(251,118,11)" fg:x="11" fg:w="1"/><text x="1.7589%" y="414.50"></text></g><g><title>set_payload (email/message.py:311) (1 samples, 0.14%)</title><rect x="1.5089%" y="420" width="0.1372%" height="15" fill="rgb(217,147,25)" fg:x="11" fg:w="1"/><text x="1.7589%" y="430.50"></text></g><g><title>build_response (requests/adapters.py:304) (1 samples, 0.14%)</title><rect x="1.6461%" y="260" width="0.1372%" height="15" fill="rgb(247,81,37)" fg:x="12" fg:w="1"/><text x="1.8961%" y="270.50"></text></g><g><title>__init__ (requests/models.py:692) (1 samples, 0.14%)</title><rect x="1.6461%" y="276" width="0.1372%" height="15" fill="rgb(209,12,38)" fg:x="12" fg:w="1"/><text x="1.8961%" y="286.50"></text></g><g><title>cookiejar_from_dict (requests/cookies.py:531) (1 samples, 0.14%)</title><rect x="1.6461%" y="292" width="0.1372%" height="15" fill="rgb(227,1,9)" fg:x="12" fg:w="1"/><text x="1.8961%" y="302.50"></text></g><g><title>__init__ (http/cookiejar.py:1268) (1 samples, 0.14%)</title><rect x="1.6461%" y="308" width="0.1372%" height="15" fill="rgb(248,47,43)" fg:x="12" fg:w="1"/><text x="1.8961%" y="318.50"></text></g><g><title>__init__ (http/cookiejar.py:904) (1 samples, 0.14%)</title><rect x="1.6461%" y="324" width="0.1372%" height="15" fill="rgb(221,10,30)" fg:x="12" fg:w="1"/><text x="1.8961%" y="334.50"></text></g><g><title>send (requests/sessions.py:701) (6 samples, 0.82%)</title><rect x="1.0974%" y="228" width="0.8230%" height="15" fill="rgb(210,229,1)" fg:x="8" fg:w="6"/><text x="1.3474%" y="238.50"></text></g><g><title>send (requests/adapters.py:538) (2 samples, 0.27%)</title><rect x="1.6461%" y="244" width="0.2743%" height="15" fill="rgb(222,148,37)" fg:x="12" fg:w="2"/><text x="1.8961%" y="254.50"></text></g><g><title>build_response (requests/adapters.py:323) (1 samples, 0.14%)</title><rect x="1.7833%" y="260" width="0.1372%" height="15" fill="rgb(234,67,33)" fg:x="13" fg:w="1"/><text x="2.0333%" y="270.50"></text></g><g><title>extract_cookies_to_jar (requests/cookies.py:137) (1 samples, 0.14%)</title><rect x="1.7833%" y="276" width="0.1372%" height="15" fill="rg