glances/docs/_static/glances-flame.svg
2022-05-26 14:47:13 +02:00

414 lines
107 KiB
XML

<?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="474" onload="init(evt)" viewBox="0 0 1200 474" 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; }
#search { 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);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
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 - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
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();
}, 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="474" 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 7576</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="1090" y="24.00">Search</text><text id="matched" x="1090" y="463.00"> </text><svg id="frames" x="10" width="1180" total_samples="251"><g><title>regex (glances/amps/glances_amp.py:135) (1 samples, 0.40%)</title><rect x="0.3984%" y="260" width="0.3984%" height="15" fill="rgb(227,0,7)" fg:x="1" fg:w="1"/><text x="0.6484%" y="270.50"></text></g><g><title>get (glances/amps/glances_amp.py:120) (1 samples, 0.40%)</title><rect x="0.3984%" y="276" width="0.3984%" height="15" fill="rgb(217,0,24)" fg:x="1" fg:w="1"/><text x="0.6484%" y="286.50"></text></g><g><title>_compile (re.py:290) (1 samples, 0.40%)</title><rect x="0.7968%" y="276" width="0.3984%" height="15" fill="rgb(221,193,54)" fg:x="2" fg:w="1"/><text x="1.0468%" y="286.50"></text></g><g><title>_build_amps_list (glances/amps_list.py:153) (3 samples, 1.20%)</title><rect x="0.3984%" y="244" width="1.1952%" height="15" fill="rgb(248,212,6)" fg:x="1" fg:w="3"/><text x="0.6484%" y="254.50"></text></g><g><title>search (re.py:200) (2 samples, 0.80%)</title><rect x="0.7968%" y="260" width="0.7968%" height="15" fill="rgb(208,68,35)" fg:x="2" fg:w="2"/><text x="1.0468%" y="270.50"></text></g><g><title>_compile (re.py:293) (1 samples, 0.40%)</title><rect x="1.1952%" y="276" width="0.3984%" height="15" fill="rgb(232,128,0)" fg:x="3" fg:w="1"/><text x="1.4452%" y="286.50"></text></g><g><title>_build_amps_list (glances/amps_list.py:156) (1 samples, 0.40%)</title><rect x="1.5936%" y="244" width="0.3984%" height="15" fill="rgb(207,160,47)" fg:x="4" fg:w="1"/><text x="1.8436%" y="254.50"></text></g><g><title>regex (glances/amps/glances_amp.py:135) (1 samples, 0.40%)</title><rect x="1.9920%" y="260" width="0.3984%" height="15" fill="rgb(228,23,34)" fg:x="5" fg:w="1"/><text x="2.2420%" y="270.50"></text></g><g><title>update (glances/amps_list.py:126) (7 samples, 2.79%)</title><rect x="0.3984%" y="228" width="2.7888%" height="15" fill="rgb(218,30,26)" fg:x="1" fg:w="7"/><text x="0.6484%" y="238.50">up..</text></g><g><title>_build_amps_list (glances/amps_list.py:160) (3 samples, 1.20%)</title><rect x="1.9920%" y="244" width="1.1952%" height="15" fill="rgb(220,122,19)" fg:x="5" fg:w="3"/><text x="2.2420%" y="254.50"></text></g><g><title>search (re.py:200) (2 samples, 0.80%)</title><rect x="2.3904%" y="260" width="0.7968%" height="15" fill="rgb(250,228,42)" fg:x="6" fg:w="2"/><text x="2.6404%" y="270.50"></text></g><g><title>update (glances/plugins/glances_amps.py:54) (8 samples, 3.19%)</title><rect x="0.3984%" y="212" width="3.1873%" height="15" fill="rgb(240,193,28)" fg:x="1" fg:w="8"/><text x="0.6484%" y="222.50">upd..</text></g><g><title>update (glances/amps_list.py:133) (1 samples, 0.40%)</title><rect x="3.1873%" y="228" width="0.3984%" height="15" fill="rgb(216,20,37)" fg:x="8" fg:w="1"/><text x="3.4373%" y="238.50"></text></g><g><title>start (threading.py:928) (1 samples, 0.40%)</title><rect x="3.1873%" y="244" width="0.3984%" height="15" fill="rgb(206,188,39)" fg:x="8" fg:w="1"/><text x="3.4373%" y="254.50"></text></g><g><title>update (glances/plugins/glances_diskio.py:102) (1 samples, 0.40%)</title><rect x="3.5857%" y="212" width="0.3984%" height="15" fill="rgb(217,207,13)" fg:x="9" fg:w="1"/><text x="3.8357%" y="222.50"></text></g><g><title>is_display (glances/plugins/glances_plugin.py:905) (1 samples, 0.40%)</title><rect x="3.5857%" y="228" width="0.3984%" height="15" fill="rgb(231,73,38)" fg:x="9" fg:w="1"/><text x="3.8357%" y="238.50"></text></g><g><title>is_hide (glances/plugins/glances_plugin.py:897) (1 samples, 0.40%)</title><rect x="3.5857%" y="244" width="0.3984%" height="15" fill="rgb(225,20,46)" fg:x="9" fg:w="1"/><text x="3.8357%" y="254.50"></text></g><g><title>update (glances/plugins/glances_diskio.py:85) (2 samples, 0.80%)</title><rect x="3.9841%" y="212" width="0.7968%" height="15" fill="rgb(210,31,41)" fg:x="10" fg:w="2"/><text x="4.2341%" y="222.50"></text></g><g><title>disk_io_counters (psutil/__init__.py:2071) (2 samples, 0.80%)</title><rect x="3.9841%" y="228" width="0.7968%" height="15" fill="rgb(221,200,47)" fg:x="10" fg:w="2"/><text x="4.2341%" y="238.50"></text></g><g><title>wrap_numbers (psutil/_common.py:702) (2 samples, 0.80%)</title><rect x="3.9841%" y="244" width="0.7968%" height="15" fill="rgb(226,26,5)" fg:x="10" fg:w="2"/><text x="4.2341%" y="254.50"></text></g><g><title>run (psutil/_common.py:671) (2 samples, 0.80%)</title><rect x="3.9841%" y="260" width="0.7968%" height="15" fill="rgb(249,33,26)" fg:x="10" fg:w="2"/><text x="4.2341%" y="270.50"></text></g><g><title>_result (docker/api/client.py:277) (1 samples, 0.40%)</title><rect x="4.7809%" y="260" width="0.3984%" height="15" fill="rgb(235,183,28)" fg:x="12" fg:w="1"/><text x="5.0309%" y="270.50"></text></g><g><title>json (requests/models.py:900) (1 samples, 0.40%)</title><rect x="4.7809%" y="276" width="0.3984%" height="15" fill="rgb(221,5,38)" fg:x="12" fg:w="1"/><text x="5.0309%" y="286.50"></text></g><g><title>loads (json/__init__.py:346) (1 samples, 0.40%)</title><rect x="4.7809%" y="292" width="0.3984%" height="15" fill="rgb(247,18,42)" fg:x="12" fg:w="1"/><text x="5.0309%" y="302.50"></text></g><g><title>decode (json/decoder.py:337) (1 samples, 0.40%)</title><rect x="4.7809%" y="308" width="0.3984%" height="15" fill="rgb(241,131,45)" fg:x="12" fg:w="1"/><text x="5.0309%" y="318.50"></text></g><g><title>request (requests/sessions.py:528) (1 samples, 0.40%)</title><rect x="5.1793%" y="308" width="0.3984%" height="15" fill="rgb(249,31,29)" fg:x="13" fg:w="1"/><text x="5.4293%" y="318.50"></text></g><g><title>prepare_request (requests/sessions.py:456) (1 samples, 0.40%)</title><rect x="5.1793%" y="324" width="0.3984%" height="15" fill="rgb(225,111,53)" fg:x="13" fg:w="1"/><text x="5.4293%" y="334.50"></text></g><g><title>prepare (requests/models.py:316) (1 samples, 0.40%)</title><rect x="5.1793%" y="340" width="0.3984%" height="15" fill="rgb(238,160,17)" fg:x="13" fg:w="1"/><text x="5.4293%" y="350.50"></text></g><g><title>prepare_url (requests/models.py:382) (1 samples, 0.40%)</title><rect x="5.1793%" y="356" width="0.3984%" height="15" fill="rgb(214,148,48)" fg:x="13" fg:w="1"/><text x="5.4293%" y="366.50"></text></g><g><title>parse_url (urllib3/util/url.py:411) (1 samples, 0.40%)</title><rect x="5.1793%" y="372" width="0.3984%" height="15" fill="rgb(232,36,49)" fg:x="13" fg:w="1"/><text x="5.4293%" y="382.50"></text></g><g><title>request (requests/sessions.py:532) (1 samples, 0.40%)</title><rect x="5.5777%" y="308" width="0.3984%" height="15" fill="rgb(209,103,24)" fg:x="14" fg:w="1"/><text x="5.8277%" y="318.50"></text></g><g><title>merge_environment_settings (requests/sessions.py:711) (1 samples, 0.40%)</title><rect x="5.5777%" y="324" width="0.3984%" height="15" fill="rgb(229,88,8)" fg:x="14" fg:w="1"/><text x="5.8277%" y="334.50"></text></g><g><title>get_environ_proxies (requests/utils.py:779) (1 samples, 0.40%)</title><rect x="5.5777%" y="340" width="0.3984%" height="15" fill="rgb(213,181,19)" fg:x="14" fg:w="1"/><text x="5.8277%" y="350.50"></text></g><g><title>getproxies_environment (urllib/request.py:2510) (1 samples, 0.40%)</title><rect x="5.5777%" y="356" width="0.3984%" height="15" fill="rgb(254,191,54)" fg:x="14" fg:w="1"/><text x="5.8277%" y="366.50"></text></g><g><title>__iter__ (_collections_abc.py:906) (1 samples, 0.40%)</title><rect x="5.5777%" y="372" width="0.3984%" height="15" fill="rgb(241,83,37)" fg:x="14" fg:w="1"/><text x="5.8277%" y="382.50"></text></g><g><title>__getitem__ (os.py:676) (1 samples, 0.40%)</title><rect x="5.5777%" y="388" width="0.3984%" height="15" fill="rgb(233,36,39)" fg:x="14" fg:w="1"/><text x="5.8277%" y="398.50"></text></g><g><title>urlopen (urllib3/connectionpool.py:670) (1 samples, 0.40%)</title><rect x="5.9761%" y="356" width="0.3984%" height="15" fill="rgb(226,3,54)" fg:x="15" fg:w="1"/><text x="6.2261%" y="366.50"></text></g><g><title>copy (requests/structures.py:83) (1 samples, 0.40%)</title><rect x="5.9761%" y="372" width="0.3984%" height="15" fill="rgb(245,192,40)" fg:x="15" fg:w="1"/><text x="6.2261%" y="382.50"></text></g><g><title>_send_request (http/client.py:1293) (1 samples, 0.40%)</title><rect x="6.3745%" y="404" width="0.3984%" height="15" fill="rgb(238,167,29)" fg:x="16" fg:w="1"/><text x="6.6245%" y="414.50"></text></g><g><title>putrequest (http/client.py:1131) (1 samples, 0.40%)</title><rect x="6.3745%" y="420" width="0.3984%" height="15" fill="rgb(232,182,51)" fg:x="16" fg:w="1"/><text x="6.6245%" y="430.50"></text></g><g><title>_encode_request (http/client.py:1211) (1 samples, 0.40%)</title><rect x="6.3745%" y="436" width="0.3984%" height="15" fill="rgb(231,60,39)" fg:x="16" fg:w="1"/><text x="6.6245%" y="446.50"></text></g><g><title>update (glances/plugins/glances_docker.py:194) (6 samples, 2.39%)</title><rect x="4.7809%" y="212" width="2.3904%" height="15" fill="rgb(208,69,12)" fg:x="12" fg:w="6"/><text x="5.0309%" y="222.50">up..</text></g><g><title>version (docker/client.py:207) (6 samples, 2.39%)</title><rect x="4.7809%" y="228" width="2.3904%" height="15" fill="rgb(235,93,37)" fg:x="12" fg:w="6"/><text x="5.0309%" y="238.50">ve..</text></g><g><title>version (docker/api/daemon.py:181) (6 samples, 2.39%)</title><rect x="4.7809%" y="244" width="2.3904%" height="15" fill="rgb(213,116,39)" fg:x="12" fg:w="6"/><text x="5.0309%" y="254.50">ve..</text></g><g><title>inner (docker/utils/decorators.py:46) (5 samples, 1.99%)</title><rect x="5.1793%" y="260" width="1.9920%" height="15" fill="rgb(222,207,29)" fg:x="13" fg:w="5"/><text x="5.4293%" y="270.50">i..</text></g><g><title>_get (docker/api/client.py:237) (5 samples, 1.99%)</title><rect x="5.1793%" y="276" width="1.9920%" height="15" fill="rgb(206,96,30)" fg:x="13" fg:w="5"/><text x="5.4293%" y="286.50">_..</text></g><g><title>get (requests/sessions.py:555) (5 samples, 1.99%)</title><rect x="5.1793%" y="292" width="1.9920%" height="15" fill="rgb(218,138,4)" fg:x="13" fg:w="5"/><text x="5.4293%" y="302.50">g..</text></g><g><title>request (requests/sessions.py:542) (3 samples, 1.20%)</title><rect x="5.9761%" y="308" width="1.1952%" height="15" fill="rgb(250,191,14)" fg:x="15" fg:w="3"/><text x="6.2261%" y="318.50"></text></g><g><title>send (requests/sessions.py:655) (3 samples, 1.20%)</title><rect x="5.9761%" y="324" width="1.1952%" height="15" fill="rgb(239,60,40)" fg:x="15" fg:w="3"/><text x="6.2261%" y="334.50"></text></g><g><title>send (requests/adapters.py:455) (3 samples, 1.20%)</title><rect x="5.9761%" y="340" width="1.1952%" height="15" fill="rgb(206,27,48)" fg:x="15" fg:w="3"/><text x="6.2261%" y="350.50"></text></g><g><title>urlopen (urllib3/connectionpool.py:699) (2 samples, 0.80%)</title><rect x="6.3745%" y="356" width="0.7968%" height="15" fill="rgb(225,35,8)" fg:x="16" fg:w="2"/><text x="6.6245%" y="366.50"></text></g><g><title>_make_request (urllib3/connectionpool.py:399) (2 samples, 0.80%)</title><rect x="6.3745%" y="372" width="0.7968%" height="15" fill="rgb(250,213,24)" fg:x="16" fg:w="2"/><text x="6.6245%" y="382.50"></text></g><g><title>request (http/client.py:1282) (2 samples, 0.80%)</title><rect x="6.3745%" y="388" width="0.7968%" height="15" fill="rgb(247,123,22)" fg:x="16" fg:w="2"/><text x="6.6245%" y="398.50"></text></g><g><title>_send_request (http/client.py:1323) (1 samples, 0.40%)</title><rect x="6.7729%" y="404" width="0.3984%" height="15" fill="rgb(231,138,38)" fg:x="17" fg:w="1"/><text x="7.0229%" y="414.50"></text></g><g><title>putheader (docker/transport/unixconn.py:34) (1 samples, 0.40%)</title><rect x="6.7729%" y="420" width="0.3984%" height="15" fill="rgb(231,145,46)" fg:x="17" fg:w="1"/><text x="7.0229%" y="430.50"></text></g><g><title>putheader (http/client.py:1264) (1 samples, 0.40%)</title><rect x="6.7729%" y="436" width="0.3984%" height="15" fill="rgb(251,118,11)" fg:x="17" fg:w="1"/><text x="7.0229%" y="446.50"></text></g><g><title>get_netrc_auth (requests/utils.py:172) (1 samples, 0.40%)</title><rect x="7.1713%" y="340" width="0.3984%" height="15" fill="rgb(217,147,25)" fg:x="18" fg:w="1"/><text x="7.4213%" y="350.50"></text></g><g><title>update (glances/plugins/glances_docker.py:208) (2 samples, 0.80%)</title><rect x="7.1713%" y="212" width="0.7968%" height="15" fill="rgb(247,81,37)" fg:x="18" fg:w="2"/><text x="7.4213%" y="222.50"></text></g><g><title>list (docker/models/containers.py:952) (2 samples, 0.80%)</title><rect x="7.1713%" y="228" width="0.7968%" height="15" fill="rgb(209,12,38)" fg:x="18" fg:w="2"/><text x="7.4213%" y="238.50"></text></g><g><title>containers (docker/api/container.py:209) (2 samples, 0.80%)</title><rect x="7.1713%" y="244" width="0.7968%" height="15" fill="rgb(227,1,9)" fg:x="18" fg:w="2"/><text x="7.4213%" y="254.50"></text></g><g><title>inner (docker/utils/decorators.py:46) (2 samples, 0.80%)</title><rect x="7.1713%" y="260" width="0.7968%" height="15" fill="rgb(248,47,43)" fg:x="18" fg:w="2"/><text x="7.4213%" y="270.50"></text></g><g><title>_get (docker/api/client.py:237) (2 samples, 0.80%)</title><rect x="7.1713%" y="276" width="0.7968%" height="15" fill="rgb(221,10,30)" fg:x="18" fg:w="2"/><text x="7.4213%" y="286.50"></text></g><g><title>get (requests/sessions.py:555) (2 samples, 0.80%)</title><rect x="7.1713%" y="292" width="0.7968%" height="15" fill="rgb(210,229,1)" fg:x="18" fg:w="2"/><text x="7.4213%" y="302.50"></text></g><g><title>request (requests/sessions.py:528) (2 samples, 0.80%)</title><rect x="7.1713%" y="308" width="0.7968%" height="15" fill="rgb(222,148,37)" fg:x="18" fg:w="2"/><text x="7.4213%" y="318.50"></text></g><g><title>prepare_request (requests/sessions.py:453) (2 samples, 0.80%)</title><rect x="7.1713%" y="324" width="0.7968%" height="15" fill="rgb(234,67,33)" fg:x="18" fg:w="2"/><text x="7.4213%" y="334.50"></text></g><g><title>get_netrc_auth (requests/utils.py:179) (1 samples, 0.40%)</title><rect x="7.5697%" y="340" width="0.3984%" height="15" fill="rgb(247,98,35)" fg:x="19" fg:w="1"/><text x="7.8197%" y="350.50"></text></g><g><title>update (glances/plugins/glances_fs.py:120) (1 samples, 0.40%)</title><rect x="7.9681%" y="212" width="0.3984%" height="15" fill="rgb(247,138,52)" fg:x="20" fg:w="1"/><text x="8.2181%" y="222.50"></text></g><g><title>is_display (glances/plugins/glances_plugin.py:905) (1 samples, 0.40%)</title><rect x="7.9681%" y="228" width="0.3984%" height="15" fill="rgb(213,79,30)" fg:x="20" fg:w="1"/><text x="8.2181%" y="238.50"></text></g><g><title>is_hide (glances/plugins/glances_plugin.py:897) (1 samples, 0.40%)</title><rect x="7.9681%" y="244" width="0.3984%" height="15" fill="rgb(246,177,23)" fg:x="20" fg:w="1"/><text x="8.2181%" y="254.50"></text></g><g><title>update (glances/plugins/glances_ip.py:91) (1 samples, 0.40%)</title><rect x="8.3665%" y="212" width="0.3984%" height="15" fill="rgb(230,62,27)" fg:x="21" fg:w="1"/><text x="8.6165%" y="222.50"></text></g><g><title>update (glances/plugins/glances_ip.py:97) (1 samples, 0.40%)</title><rect x="8.7649%" y="212" width="0.3984%" height="15" fill="rgb(216,154,8)" fg:x="22" fg:w="1"/><text x="9.0149%" y="222.50"></text></g><g><title>update (glances/plugins/glances_ip.py:98) (2 samples, 0.80%)</title><rect x="9.1633%" y="212" width="0.7968%" height="15" fill="rgb(244,35,45)" fg:x="23" fg:w="2"/><text x="9.4133%" y="222.50"></text></g><g><title>update (glances/plugins/glances_mem.py:139) (1 samples, 0.40%)</title><rect x="9.9602%" y="212" width="0.3984%" height="15" fill="rgb(251,115,12)" fg:x="25" fg:w="1"/><text x="10.2102%" y="222.50"></text></g><g><title>virtual_memory (psutil/__init__.py:1971) (1 samples, 0.40%)</title><rect x="9.9602%" y="228" width="0.3984%" height="15" fill="rgb(240,54,50)" fg:x="25" fg:w="1"/><text x="10.2102%" y="238.50"></text></g><g><title>virtual_memory (psutil/_pslinux.py:434) (1 samples, 0.40%)</title><rect x="9.9602%" y="244" width="0.3984%" height="15" fill="rgb(233,84,52)" fg:x="25" fg:w="1"/><text x="10.2102%" y="254.50"></text></g><g><title>_init (psutil/__init__.py:350) (1 samples, 0.40%)</title><rect x="10.7570%" y="308" width="0.3984%" height="15" fill="rgb(207,117,47)" fg:x="27" fg:w="1"/><text x="11.0070%" y="318.50"></text></g><g><title>RLock (threading.py:101) (1 samples, 0.40%)</title><rect x="10.7570%" y="324" width="0.3984%" height="15" fill="rgb(249,43,39)" fg:x="27" fg:w="1"/><text x="11.0070%" y="334.50"></text></g><g><title>_init (psutil/__init__.py:356) (1 samples, 0.40%)</title><rect x="11.1554%" y="308" width="0.3984%" height="15" fill="rgb(209,38,44)" fg:x="28" fg:w="1"/><text x="11.4054%" y="318.50"></text></g><g><title>wrapper (psutil/_common.py:441) (1 samples, 0.40%)</title><rect x="12.3506%" y="388" width="0.3984%" height="15" fill="rgb(236,212,23)" fg:x="31" fg:w="1"/><text x="12.6006%" y="398.50"></text></g><g><title>_parse_stat_file (psutil/_pslinux.py:1703) (6 samples, 2.39%)</title><rect x="13.1474%" y="404" width="2.3904%" height="15" fill="rgb(242,79,21)" fg:x="33" fg:w="6"/><text x="13.3974%" y="414.50">_p..</text></g><g><title>open_binary (psutil/_common.py:711) (4 samples, 1.59%)</title><rect x="13.9442%" y="420" width="1.5936%" height="15" fill="rgb(211,96,35)" fg:x="35" fg:w="4"/><text x="14.1942%" y="430.50"></text></g><g><title>_parse_stat_file (psutil/_pslinux.py:1704) (6 samples, 2.39%)</title><rect x="15.5378%" y="404" width="2.3904%" height="15" fill="rgb(253,215,40)" fg:x="39" fg:w="6"/><text x="15.7878%" y="414.50">_p..</text></g><g><title>process_iter (psutil/__init__.py:1448) (20 samples, 7.97%)</title><rect x="10.3586%" y="260" width="7.9681%" height="15" fill="rgb(211,81,21)" fg:x="26" fg:w="20"/><text x="10.6086%" y="270.50">process_ite..</text></g><g><title>is_running (psutil/__init__.py:587) (20 samples, 7.97%)</title><rect x="10.3586%" y="276" width="7.9681%" height="15" fill="rgb(208,190,38)" fg:x="26" fg:w="20"/><text x="10.6086%" y="286.50">is_running ..</text></g><g><title>__init__ (psutil/__init__.py:332) (19 samples, 7.57%)</title><rect x="10.7570%" y="292" width="7.5697%" height="15" fill="rgb(235,213,38)" fg:x="27" fg:w="19"/><text x="11.0070%" y="302.50">__init__ (..</text></g><g><title>_init (psutil/__init__.py:361) (17 samples, 6.77%)</title><rect x="11.5538%" y="308" width="6.7729%" height="15" fill="rgb(237,122,38)" fg:x="29" fg:w="17"/><text x="11.8038%" y="318.50">_init (ps..</text></g><g><title>create_time (psutil/__init__.py:717) (17 samples, 6.77%)</title><rect x="11.5538%" y="324" width="6.7729%" height="15" fill="rgb(244,218,35)" fg:x="29" fg:w="17"/><text x="11.8038%" y="334.50">create_ti..</text></g><g><title>wrapper (psutil/_pslinux.py:1661) (16 samples, 6.37%)</title><rect x="11.9522%" y="340" width="6.3745%" height="15" fill="rgb(240,68,47)" fg:x="30" fg:w="16"/><text x="12.2022%" y="350.50">wrapper ..</text></g><g><title>create_time (psutil/_pslinux.py:1873) (16 samples, 6.37%)</title><rect x="11.9522%" y="356" width="6.3745%" height="15" fill="rgb(210,16,53)" fg:x="30" fg:w="16"/><text x="12.2022%" y="366.50">create_t..</text></g><g><title>wrapper (psutil/_pslinux.py:1661) (15 samples, 5.98%)</title><rect x="12.3506%" y="372" width="5.9761%" height="15" fill="rgb(235,124,12)" fg:x="31" fg:w="15"/><text x="12.6006%" y="382.50">wrapper ..</text></g><g><title>wrapper (psutil/_common.py:444) (14 samples, 5.58%)</title><rect x="12.7490%" y="388" width="5.5777%" height="15" fill="rgb(224,169,11)" fg:x="32" fg:w="14"/><text x="12.9990%" y="398.50">wrapper..</text></g><g><title>_parse_stat_file (psutil/_pslinux.py:1710) (1 samples, 0.40%)</title><rect x="17.9283%" y="404" width="0.3984%" height="15" fill="rgb(250,166,2)" fg:x="45" fg:w="1"/><text x="18.1783%" y="414.50"></text></g><g><title>oneshot (psutil/__init__.py:460) (1 samples, 0.40%)</title><rect x="18.3267%" y="308" width="0.3984%" height="15" fill="rgb(242,216,29)" fg:x="46" fg:w="1"/><text x="18.5767%" y="318.50"></text></g><g><title>as_dict (psutil/__init__.py:524) (2 samples, 0.80%)</title><rect x="18.3267%" y="276" width="0.7968%" height="15" fill="rgb(230,116,27)" fg:x="46" fg:w="2"/><text x="18.5767%" y="286.50"></text></g><g><title>__enter__ (contextlib.py:135) (2 samples, 0.80%)</title><rect x="18.3267%" y="292" width="0.7968%" height="15" fill="rgb(228,99,48)" fg:x="46" fg:w="2"/><text x="18.5767%" y="302.50"></text></g><g><title>oneshot (psutil/__init__.py:490) (1 samples, 0.40%)</title><rect x="18.7251%" y="308" width="0.3984%" height="15" fill="rgb(253,11,6)" fg:x="47" fg:w="1"/><text x="18.9751%" y="318.50"></text></g><g><title>oneshot_enter (psutil/_pslinux.py:1746) (1 samples, 0.40%)</title><rect x="18.7251%" y="324" width="0.3984%" height="15" fill="rgb(247,143,39)" fg:x="47" fg:w="1"/><text x="18.9751%" y="334.50"></text></g><g><title>cache_activate (psutil/_common.py:460) (1 samples, 0.40%)</title><rect x="18.7251%" y="340" width="0.3984%" height="15" fill="rgb(236,97,10)" fg:x="47" fg:w="1"/><text x="18.9751%" y="350.50"></text></g><g><title>as_dict (psutil/__init__.py:525) (1 samples, 0.40%)</title><rect x="19.1235%" y="276" width="0.3984%" height="15" fill="rgb(233,208,19)" fg:x="48" fg:w="1"/><text x="19.3735%" y="286.50"></text></g><g><title>as_dict (psutil/__init__.py:530) (1 samples, 0.40%)</title><rect x="19.5219%" y="276" width="0.3984%" height="15" fill="rgb(216,164,2)" fg:x="49" fg:w="1"/><text x="19.7719%" y="286.50"></text></g><g><title>cpu_percent (psutil/__init__.py:1001) (2 samples, 0.80%)</title><rect x="20.3187%" y="292" width="0.7968%" height="15" fill="rgb(220,129,5)" fg:x="51" fg:w="2"/><text x="20.5687%" y="302.50"></text></g><g><title>timer (psutil/__init__.py:990) (2 samples, 0.80%)</title><rect x="20.3187%" y="308" width="0.7968%" height="15" fill="rgb(242,17,10)" fg:x="51" fg:w="2"/><text x="20.5687%" y="318.50"></text></g><g><title>_parse_stat_file (psutil/_pslinux.py:1703) (4 samples, 1.59%)</title><rect x="21.1155%" y="372" width="1.5936%" height="15" fill="rgb(242,107,0)" fg:x="53" fg:w="4"/><text x="21.3655%" y="382.50"></text></g><g><title>open_binary (psutil/_common.py:711) (4 samples, 1.59%)</title><rect x="21.1155%" y="388" width="1.5936%" height="15" fill="rgb(251,28,31)" fg:x="53" fg:w="4"/><text x="21.3655%" y="398.50"></text></g><g><title>_parse_stat_file (psutil/_pslinux.py:1704) (6 samples, 2.39%)</title><rect x="22.7092%" y="372" width="2.3904%" height="15" fill="rgb(233,223,10)" fg:x="57" fg:w="6"/><text x="22.9592%" y="382.50">_p..</text></g><g><title>cpu_times (psutil/_pslinux.py:1854) (11 samples, 4.38%)</title><rect x="21.1155%" y="324" width="4.3825%" height="15" fill="rgb(215,21,27)" fg:x="53" fg:w="11"/><text x="21.3655%" y="334.50">cpu_t..</text></g><g><title>wrapper (psutil/_pslinux.py:1661) (11 samples, 4.38%)</title><rect x="21.1155%" y="340" width="4.3825%" height="15" fill="rgb(232,23,21)" fg:x="53" fg:w="11"/><text x="21.3655%" y="350.50">wrapp..</text></g><g><title>wrapper (psutil/_common.py:448) (11 samples, 4.38%)</title><rect x="21.1155%" y="356" width="4.3825%" height="15" fill="rgb(244,5,23)" fg:x="53" fg:w="11"/><text x="21.3655%" y="366.50">wrapp..</text></g><g><title>_parse_stat_file (psutil/_pslinux.py:1716) (1 samples, 0.40%)</title><rect x="25.0996%" y="372" width="0.3984%" height="15" fill="rgb(226,81,46)" fg:x="63" fg:w="1"/><text x="25.3496%" y="382.50"></text></g><g><title>cpu_percent (psutil/__init__.py:1002) (12 samples, 4.78%)</title><rect x="21.1155%" y="292" width="4.7809%" height="15" fill="rgb(247,70,30)" fg:x="53" fg:w="12"/><text x="21.3655%" y="302.50">cpu_pe..</text></g><g><title>wrapper (psutil/_pslinux.py:1661) (12 samples, 4.78%)</title><rect x="21.1155%" y="308" width="4.7809%" height="15" fill="rgb(212,68,19)" fg:x="53" fg:w="12"/><text x="21.3655%" y="318.50">wrappe..</text></g><g><title>cpu_times (psutil/_pslinux.py:1855) (1 samples, 0.40%)</title><rect x="25.4980%" y="324" width="0.3984%" height="15" fill="rgb(240,187,13)" fg:x="64" fg:w="1"/><text x="25.7480%" y="334.50"></text></g><g><title>cpu_percent (psutil/__init__.py:987) (5 samples, 1.99%)</title><rect x="25.8964%" y="292" width="1.9920%" height="15" fill="rgb(223,113,26)" fg:x="65" fg:w="5"/><text x="26.1464%" y="302.50">c..</text></g><g><title>cpu_count (psutil/__init__.py:1585) (5 samples, 1.99%)</title><rect x="25.8964%" y="308" width="1.9920%" height="15" fill="rgb(206,192,2)" fg:x="65" fg:w="5"/><text x="26.1464%" y="318.50">c..</text></g><g><title>cpu_count_logical (psutil/_pslinux.py:634) (5 samples, 1.99%)</title><rect x="25.8964%" y="324" width="1.9920%" height="15" fill="rgb(241,108,4)" fg:x="65" fg:w="5"/><text x="26.1464%" y="334.50">c..</text></g><g><title>cpu_percent (psutil/__init__.py:989) (1 samples, 0.40%)</title><rect x="27.8884%" y="292" width="0.3984%" height="15" fill="rgb(247,173,49)" fg:x="70" fg:w="1"/><text x="28.1384%" y="302.50"></text></g><g><title>gids (psutil/__init__.py:746) (2 samples, 0.80%)</title><rect x="28.2869%" y="292" width="0.7968%" height="15" fill="rgb(224,114,35)" fg:x="71" fg:w="2"/><text x="28.5369%" y="302.50"></text></g><g><title>wrapper (psutil/_pslinux.py:1661) (1 samples, 0.40%)</title><rect x="28.6853%" y="308" width="0.3984%" height="15" fill="rgb(245,159,27)" fg:x="72" fg:w="1"/><text x="28.9353%" y="318.50"></text></g><g><title>gids (psutil/_pslinux.py:2242) (1 samples, 0.40%)</title><rect x="28.6853%" y="324" width="0.3984%" height="15" fill="rgb(245,172,44)" fg:x="72" fg:w="1"/><text x="28.9353%" y="334.50"></text></g><g><title>io_counters (psutil/_pslinux.py:1825) (1 samples, 0.40%)</title><rect x="29.4821%" y="324" width="0.3984%" height="15" fill="rgb(236,23,11)" fg:x="74" fg:w="1"/><text x="29.7321%" y="334.50"></text></g><g><title>open_binary (psutil/_common.py:711) (1 samples, 0.40%)</title><rect x="29.4821%" y="340" width="0.3984%" height="15" fill="rgb(205,117,38)" fg:x="74" fg:w="1"/><text x="29.7321%" y="350.50"></text></g><g><title>wrapper (psutil/_pslinux.py:1661) (3 samples, 1.20%)</title><rect x="29.0837%" y="308" width="1.1952%" height="15" fill="rgb(237,72,25)" fg:x="73" fg:w="3"/><text x="29.3337%" y="318.50"></text></g><g><title>io_counters (psutil/_pslinux.py:1831) (1 samples, 0.40%)</title><rect x="29.8805%" y="324" width="0.3984%" height="15" fill="rgb(244,70,9)" fg:x="75" fg:w="1"/><text x="30.1305%" y="334.50"></text></g><g><title>wrapper (psutil/_pslinux.py:1662) (1 samples, 0.40%)</title><rect x="30.2789%" y="308" width="0.3984%" height="15" fill="rgb(217,125,39)" fg:x="76" fg:w="1"/><text x="30.5289%" y="318.50"></text></g><g><title>io_counters (psutil/__init__.py:770) (7 samples, 2.79%)</title><rect x="29.0837%" y="292" width="2.7888%" height="15" fill="rgb(235,36,10)" fg:x="73" fg:w="7"/><text x="29.3337%" y="302.50">io..</text></g><g><title>wrapper (psutil/_pslinux.py:1663) (3 samples, 1.20%)</title><rect x="30.6773%" y="308" width="1.1952%" height="15" fill="rgb(251,123,47)" fg:x="77" fg:w="3"/><text x="30.9273%" y="318.50"></text></g><g><title>cmdline (psutil/_pslinux.py:1781) (2 samples, 0.80%)</title><rect x="31.8725%" y="340" width="0.7968%" height="15" fill="rgb(221,13,13)" fg:x="80" fg:w="2"/><text x="32.1225%" y="350.50"></text></g><g><title>open_text (psutil/_common.py:725) (1 samples, 0.40%)</title><rect x="32.2709%" y="356" width="0.3984%" height="15" fill="rgb(238,131,9)" fg:x="81" fg:w="1"/><text x="32.5209%" y="366.50"></text></g><g><title>name (psutil/__init__.py:631) (3 samples, 1.20%)</title><rect x="31.8725%" y="292" width="1.1952%" height="15" fill="rgb(211,50,8)" fg:x="80" fg:w="3"/><text x="32.1225%" y="302.50"></text></g><g><title>cmdline (psutil/__init__.py:684) (3 samples, 1.20%)</title><rect x="31.8725%" y="308" width="1.1952%" height="15" fill="rgb(245,182,24)" fg:x="80" fg:w="3"/><text x="32.1225%" y="318.50"></text></g><g><title>wrapper (psutil/_pslinux.py:1661) (3 samples, 1.20%)</title><rect x="31.8725%" y="324" width="1.1952%" height="15" fill="rgb(242,14,37)" fg:x="80" fg:w="3"/><text x="32.1225%" y="334.50"></text></g><g><title>cmdline (psutil/_pslinux.py:1782) (1 samples, 0.40%)</title><rect x="32.6693%" y="340" width="0.3984%" height="15" fill="rgb(246,228,12)" fg:x="82" fg:w="1"/><text x="32.9193%" y="350.50"></text></g><g><title>name (psutil/__init__.py:639) (1 samples, 0.40%)</title><rect x="33.0677%" y="292" width="0.3984%" height="15" fill="rgb(213,55,15)" fg:x="83" fg:w="1"/><text x="33.3177%" y="302.50"></text></g><g><title>name (psutil/__init__.py:640) (1 samples, 0.40%)</title><rect x="33.4661%" y="292" width="0.3984%" height="15" fill="rgb(209,9,3)" fg:x="84" fg:w="1"/><text x="33.7161%" y="302.50"></text></g><g><title>nice (psutil/__init__.py:727) (3 samples, 1.20%)</title><rect x="33.8645%" y="292" width="1.1952%" height="15" fill="rgb(230,59,30)" fg:x="85" fg:w="3"/><text x="34.1145%" y="302.50"></text></g><g><title>wrapper (psutil/_pslinux.py:1661) (3 samples, 1.20%)</title><rect x="33.8645%" y="308" width="1.1952%" height="15" fill="rgb(209,121,21)" fg:x="85" fg:w="3"/><text x="34.1145%" y="318.50"></text></g><g><title>nice_get (psutil/_pslinux.py:2073) (2 samples, 0.80%)</title><rect x="34.2629%" y="324" width="0.7968%" height="15" fill="rgb(220,109,13)" fg:x="86" fg:w="2"/><text x="34.5129%" y="334.50"></text></g><g><title>_read_status_file (psutil/_pslinux.py:1734) (4 samples, 1.59%)</title><rect x="35.0598%" y="372" width="1.5936%" height="15" fill="rgb(232,18,1)" fg:x="88" fg:w="4"/><text x="35.3098%" y="382.50"></text></g><g><title>open_binary (psutil/_common.py:711) (2 samples, 0.80%)</title><rect x="35.8566%" y="388" width="0.7968%" height="15" fill="rgb(215,41,42)" fg:x="90" fg:w="2"/><text x="36.1066%" y="398.50"></text></g><g><title>num_threads (psutil/_pslinux.py:2035) (10 samples, 3.98%)</title><rect x="35.0598%" y="324" width="3.9841%" height="15" fill="rgb(224,123,36)" fg:x="88" fg:w="10"/><text x="35.3098%" y="334.50">num_..</text></g><g><title>wrapper (psutil/_pslinux.py:1661) (10 samples, 3.98%)</title><rect x="35.0598%" y="340" width="3.9841%" height="15" fill="rgb(240,125,3)" fg:x="88" fg:w="10"/><text x="35.3098%" y="350.50">wrap..</text></g><g><title>wrapper (psutil/_common.py:448) (10 samples, 3.98%)</title><rect x="35.0598%" y="356" width="3.9841%" height="15" fill="rgb(205,98,50)" fg:x="88" fg:w="10"/><text x="35.3098%" y="366.50">wrap..</text></g><g><title>_read_status_file (psutil/_pslinux.py:1735) (6 samples, 2.39%)</title><rect x="36.6534%" y="372" width="2.3904%" height="15" fill="rgb(205,185,37)" fg:x="92" fg:w="6"/><text x="36.9034%" y="382.50">_r..</text></g><g><title>num_threads (psutil/__init__.py:867) (12 samples, 4.78%)</title><rect x="35.0598%" y="292" width="4.7809%" height="15" fill="rgb(238,207,15)" fg:x="88" fg:w="12"/><text x="35.3098%" y="302.50">num_th..</text></g><g><title>wrapper (psutil/_pslinux.py:1661) (12 samples, 4.78%)</title><rect x="35.0598%" y="308" width="4.7809%" height="15" fill="rgb(213,199,42)" fg:x="88" fg:w="12"/><text x="35.3098%" y="318.50">wrappe..</text></g><g><title>num_threads (psutil/_pslinux.py:2036) (2 samples, 0.80%)</title><rect x="39.0438%" y="324" width="0.7968%" height="15" fill="rgb(235,201,11)" fg:x="98" fg:w="2"/><text x="39.2938%" y="334.50"></text></g><g><title>status (psutil/__init__.py:689) (1 samples, 0.40%)</title><rect x="39.8406%" y="292" width="0.3984%" height="15" fill="rgb(207,46,11)" fg:x="100" fg:w="1"/><text x="40.0906%" y="302.50"></text></g><g><title>wrapper (psutil/_pslinux.py:1661) (1 samples, 0.40%)</title><rect x="39.8406%" y="308" width="0.3984%" height="15" fill="rgb(241,35,35)" fg:x="100" fg:w="1"/><text x="40.0906%" y="318.50"></text></g><g><title>status (psutil/_pslinux.py:2165) (1 samples, 0.40%)</title><rect x="39.8406%" y="324" width="0.3984%" height="15" fill="rgb(243,32,47)" fg:x="100" fg:w="1"/><text x="40.0906%" y="334.50"></text></g><g><title>username (psutil/__init__.py:704) (1 samples, 0.40%)</title><rect x="40.2390%" y="292" width="0.3984%" height="15" fill="rgb(247,202,23)" fg:x="101" fg:w="1"/><text x="40.4890%" y="302.50"></text></g><g><title>cpu_times (psutil/__init__.py:1050) (1 samples, 0.40%)</title><rect x="41.0359%" y="308" width="0.3984%" height="15" fill="rgb(219,102,11)" fg:x="103" fg:w="1"/><text x="41.2859%" y="318.50"></text></g><g><title>wrapper (psutil/_pslinux.py:1661) (1 samples, 0.40%)</title><rect x="41.0359%" y="324" width="0.3984%" height="15" fill="rgb(243,110,44)" fg:x="103" fg:w="1"/><text x="41.2859%" y="334.50"></text></g><g><title>cpu_times (psutil/_pslinux.py:1854) (1 samples, 0.40%)</title><rect x="41.0359%" y="340" width="0.3984%" height="15" fill="rgb(222,74,54)" fg:x="103" fg:w="1"/><text x="41.2859%" y="350.50"></text></g><g><title>wrapper (psutil/_pslinux.py:1661) (1 samples, 0.40%)</title><rect x="41.0359%" y="356" width="0.3984%" height="15" fill="rgb(216,99,12)" fg:x="103" fg:w="1"/><text x="41.2859%" y="366.50"></text></g><g><title>memory_info (psutil/_pslinux.py:1895) (7 samples, 2.79%)</title><rect x="41.4343%" y="340" width="2.7888%" height="15" fill="rgb(226,22,26)" fg:x="104" fg:w="7"/><text x="41.6843%" y="350.50">me..</text></g><g><title>open_binary (psutil/_common.py:711) (4 samples, 1.59%)</title><rect x="42.6295%" y="356" width="1.5936%" height="15" fill="rgb(217,163,10)" fg:x="107" fg:w="4"/><text x="42.8795%" y="366.50"></text></g><g><title>as_dict (psutil/__init__.py:531) (66 samples, 26.29%)</title><rect x="19.9203%" y="276" width="26.2948%" height="15" fill="rgb(213,25,53)" fg:x="50" fg:w="66"/><text x="20.1703%" y="286.50">as_dict (psutil/__init__.py:531)</text></g><g><title>wrapper (psutil/_common.py:448) (14 samples, 5.58%)</title><rect x="40.6375%" y="292" width="5.5777%" height="15" fill="rgb(252,105,26)" fg:x="102" fg:w="14"/><text x="40.8875%" y="302.50">wrapper..</text></g><g><title>memory_info (psutil/__init__.py:1061) (12 samples, 4.78%)</title><rect x="41.4343%" y="308" width="4.7809%" height="15" fill="rgb(220,39,43)" fg:x="104" fg:w="12"/><text x="41.6843%" y="318.50">memory..</text></g><g><title>wrapper (psutil/_pslinux.py:1661) (12 samples, 4.78%)</title><rect x="41.4343%" y="324" width="4.7809%" height="15" fill="rgb(229,68,48)" fg:x="104" fg:w="12"/><text x="41.6843%" y="334.50">wrappe..</text></g><g><title>memory_info (psutil/_pslinux.py:1897) (5 samples, 1.99%)</title><rect x="44.2231%" y="340" width="1.9920%" height="15" fill="rgb(252,8,32)" fg:x="111" fg:w="5"/><text x="44.4731%" y="350.50">m..</text></g><g><title>&lt;listcomp&gt; (psutil/_pslinux.py:1897) (1 samples, 0.40%)</title><rect x="45.8167%" y="356" width="0.3984%" height="15" fill="rgb(223,20,43)" fg:x="115" fg:w="1"/><text x="46.0667%" y="366.50"></text></g><g><title>oneshot (psutil/__init__.py:494) (1 samples, 0.40%)</title><rect x="46.2151%" y="308" width="0.3984%" height="15" fill="rgb(229,81,49)" fg:x="116" fg:w="1"/><text x="46.4651%" y="318.50"></text></g><g><title>cache_deactivate (psutil/_common.py:467) (1 samples, 0.40%)</title><rect x="46.2151%" y="324" width="0.3984%" height="15" fill="rgb(236,28,36)" fg:x="116" fg:w="1"/><text x="46.4651%" y="334.50"></text></g><g><title>update (glances/plugins/glances_processcount.py:77) (92 samples, 36.65%)</title><rect x="10.3586%" y="212" width="36.6534%" height="15" fill="rgb(249,185,26)" fg:x="26" fg:w="92"/><text x="10.6086%" y="222.50">update (glances/plugins/glances_processcount.py:77)</text></g><g><title>update (glances/processes.py:287) (92 samples, 36.65%)</title><rect x="10.3586%" y="228" width="36.6534%" height="15" fill="rgb(249,174,33)" fg:x="26" fg:w="92"/><text x="10.6086%" y="238.50">update (glances/processes.py:287)</text></g><g><title>&lt;listcomp&gt; (glances/processes.py:287) (92 samples, 36.65%)</title><rect x="10.3586%" y="244" width="36.6534%" height="15" fill="rgb(233,201,37)" fg:x="26" fg:w="92"/><text x="10.6086%" y="254.50">&lt;listcomp&gt; (glances/processes.py:287)</text></g><g><title>process_iter (psutil/__init__.py:1450) (72 samples, 28.69%)</title><rect x="18.3267%" y="260" width="28.6853%" height="15" fill="rgb(221,78,26)" fg:x="46" fg:w="72"/><text x="18.5767%" y="270.50">process_iter (psutil/__init__.py:1450)</text></g><g><title>as_dict (psutil/__init__.py:542) (2 samples, 0.80%)</title><rect x="46.2151%" y="276" width="0.7968%" height="15" fill="rgb(250,127,30)" fg:x="116" fg:w="2"/><text x="46.4651%" y="286.50"></text></g><g><title>__exit__ (contextlib.py:142) (2 samples, 0.80%)</title><rect x="46.2151%" y="292" width="0.7968%" height="15" fill="rgb(230,49,44)" fg:x="116" fg:w="2"/><text x="46.4651%" y="302.50"></text></g><g><title>oneshot (psutil/__init__.py:495) (1 samples, 0.40%)</title><rect x="46.6135%" y="308" width="0.3984%" height="15" fill="rgb(229,67,23)" fg:x="117" fg:w="1"/><text x="46.8635%" y="318.50"></text></g><g><title>__get_cpu (glances/cpu_percent.py:100) (1 samples, 0.40%)</title><rect x="47.0120%" y="244" width="0.3984%" height="15" fill="rgb(249,83,47)" fg:x="118" fg:w="1"/><text x="47.2620%" y="254.50"></text></g><g><title>update (glances/plugins/glances_quicklook.py:63) (2 samples, 0.80%)</title><rect x="47.0120%" y="212" width="0.7968%" height="15" fill="rgb(215,43,3)" fg:x="118" fg:w="2"/><text x="47.2620%" y="222.50"></text></g><g><title>get (glances/cpu_percent.py:61) (2 samples, 0.80%)</title><rect x="47.0120%" y="228" width="0.7968%" height="15" fill="rgb(238,154,13)" fg:x="118" fg:w="2"/><text x="47.2620%" y="238.50"></text></g><g><title>__get_cpu (glances/cpu_percent.py:98) (1 samples, 0.40%)</title><rect x="47.4104%" y="244" width="0.3984%" height="15" fill="rgb(219,56,2)" fg:x="119" fg:w="1"/><text x="47.6604%" y="254.50"></text></g><g><title>cpu_percent (psutil/__init__.py:1755) (1 samples, 0.40%)</title><rect x="47.4104%" y="260" width="0.3984%" height="15" fill="rgb(233,0,4)" fg:x="119" fg:w="1"/><text x="47.6604%" y="270.50"></text></g><g><title>cpu_times (psutil/__init__.py:1616) (1 samples, 0.40%)</title><rect x="47.4104%" y="276" width="0.3984%" height="15" fill="rgb(235,30,7)" fg:x="119" fg:w="1"/><text x="47.6604%" y="286.50"></text></g><g><title>cpu_times (psutil/_pslinux.py:604) (1 samples, 0.40%)</title><rect x="47.4104%" y="292" width="0.3984%" height="15" fill="rgb(250,79,13)" fg:x="119" fg:w="1"/><text x="47.6604%" y="302.50"></text></g><g><title>open_binary (psutil/_common.py:711) (1 samples, 0.40%)</title><rect x="47.4104%" y="308" width="0.3984%" height="15" fill="rgb(211,146,34)" fg:x="119" fg:w="1"/><text x="47.6604%" y="318.50"></text></g><g><title>swap_memory (psutil/_pslinux.py:541) (2 samples, 0.80%)</title><rect x="47.8088%" y="244" width="0.7968%" height="15" fill="rgb(228,22,38)" fg:x="120" fg:w="2"/><text x="48.0588%" y="254.50"></text></g><g><title>swap_memory (psutil/_pslinux.py:573) (1 samples, 0.40%)</title><rect x="48.6056%" y="244" width="0.3984%" height="15" fill="rgb(235,168,5)" fg:x="122" fg:w="1"/><text x="48.8556%" y="254.50"></text></g><g><title>update (glances/plugins/glances_quicklook.py:69) (4 samples, 1.59%)</title><rect x="47.8088%" y="212" width="1.5936%" height="15" fill="rgb(221,155,16)" fg:x="120" fg:w="4"/><text x="48.0588%" y="222.50"></text></g><g><title>swap_memory (psutil/__init__.py:1990) (4 samples, 1.59%)</title><rect x="47.8088%" y="228" width="1.5936%" height="15" fill="rgb(215,215,53)" fg:x="120" fg:w="4"/><text x="48.0588%" y="238.50"></text></g><g><title>swap_memory (psutil/_pslinux.py:574) (1 samples, 0.40%)</title><rect x="49.0040%" y="244" width="0.3984%" height="15" fill="rgb(223,4,10)" fg:x="123" fg:w="1"/><text x="49.2540%" y="254.50"></text></g><g><title>_cpu_get_cpuinfo_freq (psutil/_pslinux.py:727) (1 samples, 0.40%)</title><rect x="49.4024%" y="276" width="0.3984%" height="15" fill="rgb(234,103,6)" fg:x="124" fg:w="1"/><text x="49.6524%" y="286.50"></text></g><g><title>_cpu_get_cpuinfo_freq (psutil/_pslinux.py:728) (3 samples, 1.20%)</title><rect x="49.8008%" y="276" width="1.1952%" height="15" fill="rgb(227,97,0)" fg:x="125" fg:w="3"/><text x="50.0508%" y="286.50"></text></g><g><title>update (glances/plugins/glances_quicklook.py:75) (7 samples, 2.79%)</title><rect x="49.4024%" y="212" width="2.7888%" height="15" fill="rgb(234,150,53)" fg:x="124" fg:w="7"/><text x="49.6524%" y="222.50">up..</text></g><g><title>get_info (glances/cpu_percent.py:69) (7 samples, 2.79%)</title><rect x="49.4024%" y="228" width="2.7888%" height="15" fill="rgb(228,201,54)" fg:x="124" fg:w="7"/><text x="49.6524%" y="238.50">ge..</text></g><g><title>cpu_freq (psutil/__init__.py:1867) (7 samples, 2.79%)</title><rect x="49.4024%" y="244" width="2.7888%" height="15" fill="rgb(222,22,37)" fg:x="124" fg:w="7"/><text x="49.6524%" y="254.50">cp..</text></g><g><title>cpu_freq (psutil/_pslinux.py:741) (7 samples, 2.79%)</title><rect x="49.4024%" y="260" width="2.7888%" height="15" fill="rgb(237,53,32)" fg:x="124" fg:w="7"/><text x="49.6524%" y="270.50">cp..</text></g><g><title>_cpu_get_cpuinfo_freq (psutil/_pslinux.py:729) (3 samples, 1.20%)</title><rect x="50.9960%" y="276" width="1.1952%" height="15" fill="rgb(233,25,53)" fg:x="128" fg:w="3"/><text x="51.2460%" y="286.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1334) (1 samples, 0.40%)</title><rect x="52.1912%" y="292" width="0.3984%" height="15" fill="rgb(210,40,34)" fg:x="131" fg:w="1"/><text x="52.4412%" y="302.50"></text></g><g><title>glob (glob.py:24) (1 samples, 0.40%)</title><rect x="52.1912%" y="308" width="0.3984%" height="15" fill="rgb(241,220,44)" fg:x="131" fg:w="1"/><text x="52.4412%" y="318.50"></text></g><g><title>_iglob (glob.py:86) (1 samples, 0.40%)</title><rect x="52.1912%" y="324" width="0.3984%" height="15" fill="rgb(235,28,35)" fg:x="131" fg:w="1"/><text x="52.4412%" y="334.50"></text></g><g><title>_glob1 (glob.py:94) (1 samples, 0.40%)</title><rect x="52.1912%" y="340" width="0.3984%" height="15" fill="rgb(210,56,17)" fg:x="131" fg:w="1"/><text x="52.4412%" y="350.50"></text></g><g><title>_listdir (glob.py:164) (1 samples, 0.40%)</title><rect x="52.1912%" y="356" width="0.3984%" height="15" fill="rgb(224,130,29)" fg:x="131" fg:w="1"/><text x="52.4412%" y="366.50"></text></g><g><title>_iterdir (glob.py:149) (1 samples, 0.40%)</title><rect x="52.1912%" y="372" width="0.3984%" height="15" fill="rgb(235,212,8)" fg:x="131" fg:w="1"/><text x="52.4412%" y="382.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1341) (1 samples, 0.40%)</title><rect x="52.5896%" y="292" width="0.3984%" height="15" fill="rgb(223,33,50)" fg:x="132" fg:w="1"/><text x="52.8396%" y="302.50"></text></g><g><title>glob (glob.py:24) (1 samples, 0.40%)</title><rect x="52.5896%" y="308" width="0.3984%" height="15" fill="rgb(219,149,13)" fg:x="132" fg:w="1"/><text x="52.8396%" y="318.50"></text></g><g><title>_iglob (glob.py:85) (1 samples, 0.40%)</title><rect x="52.5896%" y="324" width="0.3984%" height="15" fill="rgb(250,156,29)" fg:x="132" fg:w="1"/><text x="52.8396%" y="334.50"></text></g><g><title>_iglob (glob.py:85) (1 samples, 0.40%)</title><rect x="52.5896%" y="340" width="0.3984%" height="15" fill="rgb(216,193,19)" fg:x="132" fg:w="1"/><text x="52.8396%" y="350.50"></text></g><g><title>_iglob (glob.py:85) (1 samples, 0.40%)</title><rect x="52.5896%" y="356" width="0.3984%" height="15" fill="rgb(216,135,14)" fg:x="132" fg:w="1"/><text x="52.8396%" y="366.50"></text></g><g><title>_iglob (glob.py:86) (1 samples, 0.40%)</title><rect x="52.5896%" y="372" width="0.3984%" height="15" fill="rgb(241,47,5)" fg:x="132" fg:w="1"/><text x="52.8396%" y="382.50"></text></g><g><title>_glob1 (glob.py:97) (1 samples, 0.40%)</title><rect x="52.5896%" y="388" width="0.3984%" height="15" fill="rgb(233,42,35)" fg:x="132" fg:w="1"/><text x="52.8396%" y="398.50"></text></g><g><title>filter (fnmatch.py:62) (1 samples, 0.40%)</title><rect x="52.5896%" y="404" width="0.3984%" height="15" fill="rgb(231,13,6)" fg:x="132" fg:w="1"/><text x="52.8396%" y="414.50"></text></g><g><title>cat (psutil/_pslinux.py:293) (1 samples, 0.40%)</title><rect x="52.9880%" y="308" width="0.3984%" height="15" fill="rgb(207,181,40)" fg:x="133" fg:w="1"/><text x="53.2380%" y="318.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1352) (2 samples, 0.80%)</title><rect x="52.9880%" y="292" width="0.7968%" height="15" fill="rgb(254,173,49)" fg:x="133" fg:w="2"/><text x="53.2380%" y="302.50"></text></g><g><title>cat (psutil/_pslinux.py:294) (1 samples, 0.40%)</title><rect x="53.3865%" y="308" width="0.3984%" height="15" fill="rgb(221,1,38)" fg:x="134" fg:w="1"/><text x="53.6365%" y="318.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1354) (1 samples, 0.40%)</title><rect x="53.7849%" y="292" width="0.3984%" height="15" fill="rgb(206,124,46)" fg:x="135" fg:w="1"/><text x="54.0349%" y="302.50"></text></g><g><title>cat (psutil/_pslinux.py:294) (1 samples, 0.40%)</title><rect x="53.7849%" y="308" width="0.3984%" height="15" fill="rgb(249,21,11)" fg:x="135" fg:w="1"/><text x="54.0349%" y="318.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1366) (1 samples, 0.40%)</title><rect x="54.1833%" y="292" width="0.3984%" height="15" fill="rgb(222,201,40)" fg:x="136" fg:w="1"/><text x="54.4333%" y="302.50"></text></g><g><title>cat (psutil/_pslinux.py:293) (1 samples, 0.40%)</title><rect x="54.1833%" y="308" width="0.3984%" height="15" fill="rgb(235,61,29)" fg:x="136" fg:w="1"/><text x="54.4333%" y="318.50"></text></g><g><title>open_binary (psutil/_common.py:711) (1 samples, 0.40%)</title><rect x="54.1833%" y="324" width="0.3984%" height="15" fill="rgb(219,207,3)" fg:x="136" fg:w="1"/><text x="54.4333%" y="334.50"></text></g><g><title>update (glances/plugins/glances_sensors.py:100) (7 samples, 2.79%)</title><rect x="52.1912%" y="212" width="2.7888%" height="15" fill="rgb(222,56,46)" fg:x="131" fg:w="7"/><text x="52.4412%" y="222.50">up..</text></g><g><title>get (glances/plugins/glances_sensors.py:348) (7 samples, 2.79%)</title><rect x="52.1912%" y="228" width="2.7888%" height="15" fill="rgb(239,76,54)" fg:x="131" fg:w="7"/><text x="52.4412%" y="238.50">ge..</text></g><g><title>__update__ (glances/plugins/glances_sensors.py:302) (7 samples, 2.79%)</title><rect x="52.1912%" y="244" width="2.7888%" height="15" fill="rgb(231,124,27)" fg:x="131" fg:w="7"/><text x="52.4412%" y="254.50">__..</text></g><g><title>build_sensors_list (glances/plugins/glances_sensors.py:319) (7 samples, 2.79%)</title><rect x="52.1912%" y="260" width="2.7888%" height="15" fill="rgb(249,195,6)" fg:x="131" fg:w="7"/><text x="52.4412%" y="270.50">bu..</text></g><g><title>sensors_temperatures (psutil/__init__.py:2248) (7 samples, 2.79%)</title><rect x="52.1912%" y="276" width="2.7888%" height="15" fill="rgb(237,174,47)" fg:x="131" fg:w="7"/><text x="52.4412%" y="286.50">se..</text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1367) (1 samples, 0.40%)</title><rect x="54.5817%" y="292" width="0.3984%" height="15" fill="rgb(206,201,31)" fg:x="137" fg:w="1"/><text x="54.8317%" y="302.50"></text></g><g><title>cat (psutil/_pslinux.py:293) (1 samples, 0.40%)</title><rect x="54.5817%" y="308" width="0.3984%" height="15" fill="rgb(231,57,52)" fg:x="137" fg:w="1"/><text x="54.8317%" y="318.50"></text></g><g><title>open_binary (psutil/_common.py:711) (1 samples, 0.40%)</title><rect x="54.5817%" y="324" width="0.3984%" height="15" fill="rgb(248,177,22)" fg:x="137" fg:w="1"/><text x="54.8317%" y="334.50"></text></g><g><title>sensors_battery (psutil/_pslinux.py:1496) (1 samples, 0.40%)</title><rect x="54.9801%" y="292" width="0.3984%" height="15" fill="rgb(215,211,37)" fg:x="138" fg:w="1"/><text x="55.2301%" y="302.50"></text></g><g><title>multi_cat (psutil/_pslinux.py:1475) (1 samples, 0.40%)</title><rect x="54.9801%" y="308" width="0.3984%" height="15" fill="rgb(241,128,51)" fg:x="138" fg:w="1"/><text x="55.2301%" y="318.50"></text></g><g><title>cat (psutil/_pslinux.py:293) (1 samples, 0.40%)</title><rect x="54.9801%" y="324" width="0.3984%" height="15" fill="rgb(227,165,31)" fg:x="138" fg:w="1"/><text x="55.2301%" y="334.50"></text></g><g><title>open_binary (psutil/_common.py:711) (1 samples, 0.40%)</title><rect x="54.9801%" y="340" width="0.3984%" height="15" fill="rgb(228,167,24)" fg:x="138" fg:w="1"/><text x="55.2301%" y="350.50"></text></g><g><title>update (glances/plugins/sensors/glances_batpercent.py:129) (2 samples, 0.80%)</title><rect x="54.9801%" y="260" width="0.7968%" height="15" fill="rgb(228,143,12)" fg:x="138" fg:w="2"/><text x="55.2301%" y="270.50"></text></g><g><title>sensors_battery (psutil/__init__.py:2296) (2 samples, 0.80%)</title><rect x="54.9801%" y="276" width="0.7968%" height="15" fill="rgb(249,149,8)" fg:x="138" fg:w="2"/><text x="55.2301%" y="286.50"></text></g><g><title>sensors_battery (psutil/_pslinux.py:1521) (1 samples, 0.40%)</title><rect x="55.3785%" y="292" width="0.3984%" height="15" fill="rgb(243,35,44)" fg:x="139" fg:w="1"/><text x="55.6285%" y="302.50"></text></g><g><title>join (posixpath.py:77) (1 samples, 0.40%)</title><rect x="55.3785%" y="308" width="0.3984%" height="15" fill="rgb(246,89,9)" fg:x="139" fg:w="1"/><text x="55.6285%" y="318.50"></text></g><g><title>_get_sep (posixpath.py:42) (1 samples, 0.40%)</title><rect x="55.3785%" y="324" width="0.3984%" height="15" fill="rgb(233,213,13)" fg:x="139" fg:w="1"/><text x="55.6285%" y="334.50"></text></g><g><title>update (glances/plugins/sensors/glances_batpercent.py:135) (1 samples, 0.40%)</title><rect x="55.7769%" y="260" width="0.3984%" height="15" fill="rgb(233,141,41)" fg:x="140" fg:w="1"/><text x="56.0269%" y="270.50"></text></g><g><title>sensors_battery (psutil/__init__.py:2296) (1 samples, 0.40%)</title><rect x="55.7769%" y="276" width="0.3984%" height="15" fill="rgb(239,167,4)" fg:x="140" fg:w="1"/><text x="56.0269%" y="286.50"></text></g><g><title>sensors_battery (psutil/_pslinux.py:1508) (1 samples, 0.40%)</title><rect x="55.7769%" y="292" width="0.3984%" height="15" fill="rgb(209,217,16)" fg:x="140" fg:w="1"/><text x="56.0269%" y="302.50"></text></g><g><title>update (glances/plugins/glances_sensors.py:117) (4 samples, 1.59%)</title><rect x="54.9801%" y="212" width="1.5936%" height="15" fill="rgb(219,88,35)" fg:x="138" fg:w="4"/><text x="55.2301%" y="222.50"></text></g><g><title>wrapper (glances/plugins/glances_plugin.py:1183) (4 samples, 1.59%)</title><rect x="54.9801%" y="228" width="1.5936%" height="15" fill="rgb(220,193,23)" fg:x="138" fg:w="4"/><text x="55.2301%" y="238.50"></text></g><g><title>update (glances/plugins/sensors/glances_batpercent.py:79) (4 samples, 1.59%)</title><rect x="54.9801%" y="244" width="1.5936%" height="15" fill="rgb(230,90,52)" fg:x="138" fg:w="4"/><text x="55.2301%" y="254.50"></text></g><g><title>update (glances/plugins/sensors/glances_batpercent.py:137) (1 samples, 0.40%)</title><rect x="56.1753%" y="260" width="0.3984%" height="15" fill="rgb(252,106,19)" fg:x="141" fg:w="1"/><text x="56.4253%" y="270.50"></text></g><g><title>sensors_battery (psutil/__init__.py:2296) (1 samples, 0.40%)</title><rect x="56.1753%" y="276" width="0.3984%" height="15" fill="rgb(206,74,20)" fg:x="141" fg:w="1"/><text x="56.4253%" y="286.50"></text></g><g><title>sensors_battery (psutil/_pslinux.py:1496) (1 samples, 0.40%)</title><rect x="56.1753%" y="292" width="0.3984%" height="15" fill="rgb(230,138,44)" fg:x="141" fg:w="1"/><text x="56.4253%" y="302.50"></text></g><g><title>multi_cat (psutil/_pslinux.py:1475) (1 samples, 0.40%)</title><rect x="56.1753%" y="308" width="0.3984%" height="15" fill="rgb(235,182,43)" fg:x="141" fg:w="1"/><text x="56.4253%" y="318.50"></text></g><g><title>cat (psutil/_pslinux.py:293) (1 samples, 0.40%)</title><rect x="56.1753%" y="324" width="0.3984%" height="15" fill="rgb(242,16,51)" fg:x="141" fg:w="1"/><text x="56.4253%" y="334.50"></text></g><g><title>open_binary (psutil/_common.py:711) (1 samples, 0.40%)</title><rect x="56.1753%" y="340" width="0.3984%" height="15" fill="rgb(248,9,4)" fg:x="141" fg:w="1"/><text x="56.4253%" y="350.50"></text></g><g><title>update (glances/plugins/glances_sensors.py:85) (1 samples, 0.40%)</title><rect x="56.5737%" y="212" width="0.3984%" height="15" fill="rgb(210,31,22)" fg:x="142" fg:w="1"/><text x="56.8237%" y="222.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1330) (1 samples, 0.40%)</title><rect x="56.9721%" y="292" width="0.3984%" height="15" fill="rgb(239,54,39)" fg:x="143" fg:w="1"/><text x="57.2221%" y="302.50"></text></g><g><title>glob (glob.py:24) (1 samples, 0.40%)</title><rect x="56.9721%" y="308" width="0.3984%" height="15" fill="rgb(230,99,41)" fg:x="143" fg:w="1"/><text x="57.2221%" y="318.50"></text></g><g><title>_iglob (glob.py:86) (1 samples, 0.40%)</title><rect x="56.9721%" y="324" width="0.3984%" height="15" fill="rgb(253,106,12)" fg:x="143" fg:w="1"/><text x="57.2221%" y="334.50"></text></g><g><title>_glob1 (glob.py:97) (1 samples, 0.40%)</title><rect x="56.9721%" y="340" width="0.3984%" height="15" fill="rgb(213,46,41)" fg:x="143" fg:w="1"/><text x="57.2221%" y="350.50"></text></g><g><title>filter (fnmatch.py:61) (1 samples, 0.40%)</title><rect x="56.9721%" y="356" width="0.3984%" height="15" fill="rgb(215,133,35)" fg:x="143" fg:w="1"/><text x="57.2221%" y="366.50"></text></g><g><title>_iglob (glob.py:85) (1 samples, 0.40%)</title><rect x="57.3705%" y="324" width="0.3984%" height="15" fill="rgb(213,28,5)" fg:x="144" fg:w="1"/><text x="57.6205%" y="334.50"></text></g><g><title>_iglob (glob.py:86) (1 samples, 0.40%)</title><rect x="57.3705%" y="340" width="0.3984%" height="15" fill="rgb(215,77,49)" fg:x="144" fg:w="1"/><text x="57.6205%" y="350.50"></text></g><g><title>_glob0 (glob.py:101) (1 samples, 0.40%)</title><rect x="57.3705%" y="356" width="0.3984%" height="15" fill="rgb(248,100,22)" fg:x="144" fg:w="1"/><text x="57.6205%" y="366.50"></text></g><g><title>_lexists (glob.py:180) (1 samples, 0.40%)</title><rect x="57.3705%" y="372" width="0.3984%" height="15" fill="rgb(208,67,9)" fg:x="144" fg:w="1"/><text x="57.6205%" y="382.50"></text></g><g><title>lexists (posixpath.py:177) (1 samples, 0.40%)</title><rect x="57.3705%" y="388" width="0.3984%" height="15" fill="rgb(219,133,21)" fg:x="144" fg:w="1"/><text x="57.6205%" y="398.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1334) (2 samples, 0.80%)</title><rect x="57.3705%" y="292" width="0.7968%" height="15" fill="rgb(246,46,29)" fg:x="144" fg:w="2"/><text x="57.6205%" y="302.50"></text></g><g><title>glob (glob.py:24) (2 samples, 0.80%)</title><rect x="57.3705%" y="308" width="0.7968%" height="15" fill="rgb(246,185,52)" fg:x="144" fg:w="2"/><text x="57.6205%" y="318.50"></text></g><g><title>_iglob (glob.py:86) (1 samples, 0.40%)</title><rect x="57.7689%" y="324" width="0.3984%" height="15" fill="rgb(252,136,11)" fg:x="145" fg:w="1"/><text x="58.0189%" y="334.50"></text></g><g><title>_glob1 (glob.py:94) (1 samples, 0.40%)</title><rect x="57.7689%" y="340" width="0.3984%" height="15" fill="rgb(219,138,53)" fg:x="145" fg:w="1"/><text x="58.0189%" y="350.50"></text></g><g><title>_listdir (glob.py:164) (1 samples, 0.40%)</title><rect x="57.7689%" y="356" width="0.3984%" height="15" fill="rgb(211,51,23)" fg:x="145" fg:w="1"/><text x="58.0189%" y="366.50"></text></g><g><title>_iterdir (glob.py:146) (1 samples, 0.40%)</title><rect x="57.7689%" y="372" width="0.3984%" height="15" fill="rgb(247,221,28)" fg:x="145" fg:w="1"/><text x="58.0189%" y="382.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1341) (1 samples, 0.40%)</title><rect x="58.1673%" y="292" width="0.3984%" height="15" fill="rgb(251,222,45)" fg:x="146" fg:w="1"/><text x="58.4173%" y="302.50"></text></g><g><title>glob (glob.py:24) (1 samples, 0.40%)</title><rect x="58.1673%" y="308" width="0.3984%" height="15" fill="rgb(217,162,53)" fg:x="146" fg:w="1"/><text x="58.4173%" y="318.50"></text></g><g><title>_iglob (glob.py:85) (1 samples, 0.40%)</title><rect x="58.1673%" y="324" width="0.3984%" height="15" fill="rgb(229,93,14)" fg:x="146" fg:w="1"/><text x="58.4173%" y="334.50"></text></g><g><title>_iglob (glob.py:85) (1 samples, 0.40%)</title><rect x="58.1673%" y="340" width="0.3984%" height="15" fill="rgb(209,67,49)" fg:x="146" fg:w="1"/><text x="58.4173%" y="350.50"></text></g><g><title>_iglob (glob.py:85) (1 samples, 0.40%)</title><rect x="58.1673%" y="356" width="0.3984%" height="15" fill="rgb(213,87,29)" fg:x="146" fg:w="1"/><text x="58.4173%" y="366.50"></text></g><g><title>_iglob (glob.py:86) (1 samples, 0.40%)</title><rect x="58.1673%" y="372" width="0.3984%" height="15" fill="rgb(205,151,52)" fg:x="146" fg:w="1"/><text x="58.4173%" y="382.50"></text></g><g><title>_glob1 (glob.py:94) (1 samples, 0.40%)</title><rect x="58.1673%" y="388" width="0.3984%" height="15" fill="rgb(253,215,39)" fg:x="146" fg:w="1"/><text x="58.4173%" y="398.50"></text></g><g><title>_listdir (glob.py:164) (1 samples, 0.40%)</title><rect x="58.1673%" y="404" width="0.3984%" height="15" fill="rgb(221,220,41)" fg:x="146" fg:w="1"/><text x="58.4173%" y="414.50"></text></g><g><title>_iterdir (glob.py:148) (1 samples, 0.40%)</title><rect x="58.1673%" y="420" width="0.3984%" height="15" fill="rgb(218,133,21)" fg:x="146" fg:w="1"/><text x="58.4173%" y="430.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1349) (1 samples, 0.40%)</title><rect x="58.5657%" y="292" width="0.3984%" height="15" fill="rgb(221,193,43)" fg:x="147" fg:w="1"/><text x="58.8157%" y="302.50"></text></g><g><title>cat (psutil/_pslinux.py:293) (1 samples, 0.40%)</title><rect x="58.9641%" y="308" width="0.3984%" height="15" fill="rgb(240,128,52)" fg:x="148" fg:w="1"/><text x="59.2141%" y="318.50"></text></g><g><title>open_binary (psutil/_common.py:711) (1 samples, 0.40%)</title><rect x="58.9641%" y="324" width="0.3984%" height="15" fill="rgb(253,114,12)" fg:x="148" fg:w="1"/><text x="59.2141%" y="334.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1352) (2 samples, 0.80%)</title><rect x="58.9641%" y="292" width="0.7968%" height="15" fill="rgb(215,223,47)" fg:x="148" fg:w="2"/><text x="59.2141%" y="302.50"></text></g><g><title>cat (psutil/_pslinux.py:294) (1 samples, 0.40%)</title><rect x="59.3625%" y="308" width="0.3984%" height="15" fill="rgb(248,225,23)" fg:x="149" fg:w="1"/><text x="59.6125%" y="318.50"></text></g><g><title>cat (psutil/_pslinux.py:293) (1 samples, 0.40%)</title><rect x="59.7610%" y="308" width="0.3984%" height="15" fill="rgb(250,108,0)" fg:x="150" fg:w="1"/><text x="60.0110%" y="318.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1354) (3 samples, 1.20%)</title><rect x="59.7610%" y="292" width="1.1952%" height="15" fill="rgb(228,208,7)" fg:x="150" fg:w="3"/><text x="60.0110%" y="302.50"></text></g><g><title>cat (psutil/_pslinux.py:294) (2 samples, 0.80%)</title><rect x="60.1594%" y="308" width="0.7968%" height="15" fill="rgb(244,45,10)" fg:x="151" fg:w="2"/><text x="60.4094%" y="318.50"></text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1366) (5 samples, 1.99%)</title><rect x="60.9562%" y="292" width="1.9920%" height="15" fill="rgb(207,125,25)" fg:x="153" fg:w="5"/><text x="61.2062%" y="302.50">s..</text></g><g><title>cat (psutil/_pslinux.py:293) (5 samples, 1.99%)</title><rect x="60.9562%" y="308" width="1.9920%" height="15" fill="rgb(210,195,18)" fg:x="153" fg:w="5"/><text x="61.2062%" y="318.50">c..</text></g><g><title>open_binary (psutil/_common.py:711) (5 samples, 1.99%)</title><rect x="60.9562%" y="324" width="1.9920%" height="15" fill="rgb(249,80,12)" fg:x="153" fg:w="5"/><text x="61.2062%" y="334.50">o..</text></g><g><title>__update__ (glances/plugins/glances_sensors.py:302) (19 samples, 7.57%)</title><rect x="56.9721%" y="244" width="7.5697%" height="15" fill="rgb(221,65,9)" fg:x="143" fg:w="19"/><text x="57.2221%" y="254.50">__update__..</text></g><g><title>build_sensors_list (glances/plugins/glances_sensors.py:319) (19 samples, 7.57%)</title><rect x="56.9721%" y="260" width="7.5697%" height="15" fill="rgb(235,49,36)" fg:x="143" fg:w="19"/><text x="57.2221%" y="270.50">build_sens..</text></g><g><title>sensors_temperatures (psutil/__init__.py:2248) (19 samples, 7.57%)</title><rect x="56.9721%" y="276" width="7.5697%" height="15" fill="rgb(225,32,20)" fg:x="143" fg:w="19"/><text x="57.2221%" y="286.50">sensors_te..</text></g><g><title>sensors_temperatures (psutil/_pslinux.py:1367) (4 samples, 1.59%)</title><rect x="62.9482%" y="292" width="1.5936%" height="15" fill="rgb(215,141,46)" fg:x="158" fg:w="4"/><text x="63.1982%" y="302.50"></text></g><g><title>cat (psutil/_pslinux.py:293) (4 samples, 1.59%)</title><rect x="62.9482%" y="308" width="1.5936%" height="15" fill="rgb(250,160,47)" fg:x="158" fg:w="4"/><text x="63.1982%" y="318.50"></text></g><g><title>open_binary (psutil/_common.py:711) (4 samples, 1.59%)</title><rect x="62.9482%" y="324" width="1.5936%" height="15" fill="rgb(216,222,40)" fg:x="158" fg:w="4"/><text x="63.1982%" y="334.50"></text></g><g><title>sensors_fans (psutil/_pslinux.py:1440) (1 samples, 0.40%)</title><rect x="64.5418%" y="292" width="0.3984%" height="15" fill="rgb(234,217,39)" fg:x="162" fg:w="1"/><text x="64.7918%" y="302.50"></text></g><g><title>glob (glob.py:24) (1 samples, 0.40%)</title><rect x="64.5418%" y="308" width="0.3984%" height="15" fill="rgb(207,178,40)" fg:x="162" fg:w="1"/><text x="64.7918%" y="318.50"></text></g><g><title>_iglob (glob.py:86) (1 samples, 0.40%)</title><rect x="64.5418%" y="324" width="0.3984%" height="15" fill="rgb(221,136,13)" fg:x="162" fg:w="1"/><text x="64.7918%" y="334.50"></text></g><g><title>_glob1 (glob.py:97) (1 samples, 0.40%)</title><rect x="64.5418%" y="340" width="0.3984%" height="15" fill="rgb(249,199,10)" fg:x="162" fg:w="1"/><text x="64.7918%" y="350.50"></text></g><g><title>filter (fnmatch.py:68) (1 samples, 0.40%)</title><rect x="64.5418%" y="356" width="0.3984%" height="15" fill="rgb(249,222,13)" fg:x="162" fg:w="1"/><text x="64.7918%" y="366.50"></text></g><g><title>update (glances/plugins/glances_sensors.py:92) (21 samples, 8.37%)</title><rect x="56.9721%" y="212" width="8.3665%" height="15" fill="rgb(244,185,38)" fg:x="143" fg:w="21"/><text x="57.2221%" y="222.50">update (glan..</text></g><g><title>get (glances/plugins/glances_sensors.py:348) (21 samples, 8.37%)</title><rect x="56.9721%" y="228" width="8.3665%" height="15" fill="rgb(236,202,9)" fg:x="143" fg:w="21"/><text x="57.2221%" y="238.50">get (glances..</text></g><g><title>__update__ (glances/plugins/glances_sensors.py:305) (2 samples, 0.80%)</title><rect x="64.5418%" y="244" width="0.7968%" height="15" fill="rgb(250,229,37)" fg:x="162" fg:w="2"/><text x="64.7918%" y="254.50"></text></g><g><title>build_sensors_list (glances/plugins/glances_sensors.py:322) (2 samples, 0.80%)</title><rect x="64.5418%" y="260" width="0.7968%" height="15" fill="rgb(206,174,23)" fg:x="162" fg:w="2"/><text x="64.7918%" y="270.50"></text></g><g><title>sensors_fans (psutil/__init__.py:2278) (2 samples, 0.80%)</title><rect x="64.5418%" y="276" width="0.7968%" height="15" fill="rgb(211,33,43)" fg:x="162" fg:w="2"/><text x="64.7918%" y="286.50"></text></g><g><title>sensors_fans (psutil/_pslinux.py:1444) (1 samples, 0.40%)</title><rect x="64.9402%" y="292" width="0.3984%" height="15" fill="rgb(245,58,50)" fg:x="163" fg:w="1"/><text x="65.1902%" y="302.50"></text></g><g><title>glob (glob.py:24) (1 samples, 0.40%)</title><rect x="64.9402%" y="308" width="0.3984%" height="15" fill="rgb(244,68,36)" fg:x="163" fg:w="1"/><text x="65.1902%" y="318.50"></text></g><g><title>_iglob (glob.py:86) (1 samples, 0.40%)</title><rect x="64.9402%" y="324" width="0.3984%" height="15" fill="rgb(232,229,15)" fg:x="163" fg:w="1"/><text x="65.1902%" y="334.50"></text></g><g><title>_glob1 (glob.py:97) (1 samples, 0.40%)</title><rect x="64.9402%" y="340" width="0.3984%" height="15" fill="rgb(254,30,23)" fg:x="163" fg:w="1"/><text x="65.1902%" y="350.50"></text></g><g><title>filter (fnmatch.py:62) (1 samples, 0.40%)</title><rect x="64.9402%" y="356" width="0.3984%" height="15" fill="rgb(235,160,14)" fg:x="163" fg:w="1"/><text x="65.1902%" y="366.50"></text></g><g><title>wrapper (glances/plugins/glances_plugin.py:1183) (164 samples, 65.34%)</title><rect x="0.3984%" y="196" width="65.3386%" height="15" fill="rgb(212,155,44)" fg:x="1" fg:w="164"/><text x="0.6484%" y="206.50">wrapper (glances/plugins/glances_plugin.py:1183)</text></g><g><title>update (glances/plugins/glances_uptime.py:69) (1 samples, 0.40%)</title><rect x="65.3386%" y="212" width="0.3984%" height="15" fill="rgb(226,2,50)" fg:x="164" fg:w="1"/><text x="65.5886%" y="222.50"></text></g><g><title>boot_time (psutil/__init__.py:2310) (1 samples, 0.40%)</title><rect x="65.3386%" y="228" width="0.3984%" height="15" fill="rgb(234,177,6)" fg:x="164" fg:w="1"/><text x="65.5886%" y="238.50"></text></g><g><title>wrapper (glances/plugins/glances_plugin.py:1166) (165 samples, 65.74%)</title><rect x="0.3984%" y="180" width="65.7371%" height="15" fill="rgb(217,24,9)" fg:x="1" fg:w="165"/><text x="0.6484%" y="190.50">wrapper (glances/plugins/glances_plugin.py:1166)</text></g><g><title>wrapper (glances/plugins/glances_plugin.py:1186) (1 samples, 0.40%)</title><rect x="65.7371%" y="196" width="0.3984%" height="15" fill="rgb(220,13,46)" fg:x="165" fg:w="1"/><text x="65.9871%" y="206.50"></text></g><g><title>net_io_counters (psutil/__init__.py:2117) (1 samples, 0.40%)</title><rect x="66.1355%" y="212" width="0.3984%" height="15" fill="rgb(239,221,27)" fg:x="166" fg:w="1"/><text x="66.3855%" y="222.50"></text></g><g><title>net_io_counters (psutil/_pslinux.py:1064) (1 samples, 0.40%)</title><rect x="66.1355%" y="228" width="0.3984%" height="15" fill="rgb(222,198,25)" fg:x="166" fg:w="1"/><text x="66.3855%" y="238.50"></text></g><g><title>update (glances/plugins/glances_network.py:126) (2 samples, 0.80%)</title><rect x="66.1355%" y="196" width="0.7968%" height="15" fill="rgb(211,99,13)" fg:x="166" fg:w="2"/><text x="66.3855%" y="206.50"></text></g><g><title>net_io_counters (psutil/__init__.py:2121) (1 samples, 0.40%)</title><rect x="66.5339%" y="212" width="0.3984%" height="15" fill="rgb(232,111,31)" fg:x="167" fg:w="1"/><text x="66.7839%" y="222.50"></text></g><g><title>wrap_numbers (psutil/_common.py:702) (1 samples, 0.40%)</title><rect x="66.5339%" y="228" width="0.3984%" height="15" fill="rgb(245,82,37)" fg:x="167" fg:w="1"/><text x="66.7839%" y="238.50"></text></g><g><title>run (psutil/_common.py:671) (1 samples, 0.40%)</title><rect x="66.5339%" y="244" width="0.3984%" height="15" fill="rgb(227,149,46)" fg:x="167" fg:w="1"/><text x="66.7839%" y="254.50"></text></g><g><title>update (glances/stats.py:221) (168 samples, 66.93%)</title><rect x="0.3984%" y="164" width="66.9323%" height="15" fill="rgb(218,36,50)" fg:x="1" fg:w="168"/><text x="0.6484%" y="174.50">update (glances/stats.py:221)</text></g><g><title>wrapper (glances/plugins/glances_plugin.py:1183) (3 samples, 1.20%)</title><rect x="66.1355%" y="180" width="1.1952%" height="15" fill="rgb(226,80,48)" fg:x="166" fg:w="3"/><text x="66.3855%" y="190.50"></text></g><g><title>update (glances/plugins/glances_network.py:136) (1 samples, 0.40%)</title><rect x="66.9323%" y="196" width="0.3984%" height="15" fill="rgb(238,224,15)" fg:x="168" fg:w="1"/><text x="67.1823%" y="206.50"></text></g><g><title>net_if_stats (psutil/__init__.py:2224) (1 samples, 0.40%)</title><rect x="66.9323%" y="212" width="0.3984%" height="15" fill="rgb(241,136,10)" fg:x="168" fg:w="1"/><text x="67.1823%" y="222.50"></text></g><g><title>net_if_stats (psutil/_pslinux.py:1082) (1 samples, 0.40%)</title><rect x="66.9323%" y="228" width="0.3984%" height="15" fill="rgb(208,32,45)" fg:x="168" fg:w="1"/><text x="67.1823%" y="238.50"></text></g><g><title>update (glances/stats.py:223) (1 samples, 0.40%)</title><rect x="67.3307%" y="164" width="0.3984%" height="15" fill="rgb(207,135,9)" fg:x="169" fg:w="1"/><text x="67.5807%" y="174.50"></text></g><g><title>update_stats_history (glances/plugins/glances_plugin.py:214) (1 samples, 0.40%)</title><rect x="67.3307%" y="180" width="0.3984%" height="15" fill="rgb(206,86,44)" fg:x="169" fg:w="1"/><text x="67.5807%" y="190.50"></text></g><g><title>update_views (glances/plugins/glances_plugin.py:532) (7 samples, 2.79%)</title><rect x="68.1275%" y="180" width="2.7888%" height="15" fill="rgb(245,177,15)" fg:x="171" fg:w="7"/><text x="68.3775%" y="190.50">up..</text></g><g><title>update_views (glances/plugins/glances_plugin.py:539) (3 samples, 1.20%)</title><rect x="70.9163%" y="180" width="1.1952%" height="15" fill="rgb(206,64,50)" fg:x="178" fg:w="3"/><text x="71.1663%" y="190.50"></text></g><g><title>update_views (glances/plugins/glances_plugin.py:540) (5 samples, 1.99%)</title><rect x="72.1116%" y="180" width="1.9920%" height="15" fill="rgb(234,36,40)" fg:x="181" fg:w="5"/><text x="72.3616%" y="190.50">u..</text></g><g><title>update_views (glances/plugins/glances_plugin.py:541) (5 samples, 1.99%)</title><rect x="74.1036%" y="180" width="1.9920%" height="15" fill="rgb(213,64,8)" fg:x="186" fg:w="5"/><text x="74.3536%" y="190.50">u..</text></g><g><title>get_key (glances/plugins/glances_processlist.py:148) (1 samples, 0.40%)</title><rect x="75.6972%" y="196" width="0.3984%" height="15" fill="rgb(210,75,36)" fg:x="190" fg:w="1"/><text x="75.9472%" y="206.50"></text></g><g><title>update_views (glances/plugins/glances_quicklook.py:100) (1 samples, 0.40%)</title><rect x="76.0956%" y="180" width="0.3984%" height="15" fill="rgb(229,88,21)" fg:x="191" fg:w="1"/><text x="76.3456%" y="190.50"></text></g><g><title>get_alert (glances/plugins/glances_plugin.py:741) (1 samples, 0.40%)</title><rect x="76.0956%" y="196" width="0.3984%" height="15" fill="rgb(252,204,47)" fg:x="191" fg:w="1"/><text x="76.3456%" y="206.50"></text></g><g><title>get_limit_log (glances/plugins/glances_plugin.py:849) (1 samples, 0.40%)</title><rect x="76.0956%" y="212" width="0.3984%" height="15" fill="rgb(208,77,27)" fg:x="191" fg:w="1"/><text x="76.3456%" y="222.50"></text></g><g><title>__serve_once (glances/standalone.py:139) (192 samples, 76.49%)</title><rect x="0.3984%" y="148" width="76.4940%" height="15" fill="rgb(221,76,26)" fg:x="1" fg:w="192"/><text x="0.6484%" y="158.50">__serve_once (glances/standalone.py:139)</text></g><g><title>update (glances/stats.py:225) (23 samples, 9.16%)</title><rect x="67.7291%" y="164" width="9.1633%" height="15" fill="rgb(225,139,18)" fg:x="170" fg:w="23"/><text x="67.9791%" y="174.50">update (glanc..</text></g><g><title>update_views (glances/plugins/glances_sensors.py:165) (1 samples, 0.40%)</title><rect x="76.4940%" y="180" width="0.3984%" height="15" fill="rgb(230,137,11)" fg:x="192" fg:w="1"/><text x="76.7440%" y="190.50"></text></g><g><title>update_views (glances/plugins/glances_plugin.py:558) (1 samples, 0.40%)</title><rect x="76.4940%" y="196" width="0.3984%" height="15" fill="rgb(212,28,1)" fg:x="192" fg:w="1"/><text x="76.7440%" y="206.50"></text></g><g><title>msg_curse (glances/plugins/glances_cpu.py:319) (1 samples, 0.40%)</title><rect x="77.2908%" y="244" width="0.3984%" height="15" fill="rgb(248,164,17)" fg:x="194" fg:w="1"/><text x="77.5408%" y="254.50"></text></g><g><title>get_trend (glances/plugins/glances_plugin.py:305) (1 samples, 0.40%)</title><rect x="77.2908%" y="260" width="0.3984%" height="15" fill="rgb(222,171,42)" fg:x="194" fg:w="1"/><text x="77.5408%" y="270.50"></text></g><g><title>mean (statistics.py:329) (1 samples, 0.40%)</title><rect x="77.2908%" y="276" width="0.3984%" height="15" fill="rgb(243,84,45)" fg:x="194" fg:w="1"/><text x="77.5408%" y="286.50"></text></g><g><title>_sum (statistics.py:198) (1 samples, 0.40%)</title><rect x="77.2908%" y="292" width="0.3984%" height="15" fill="rgb(252,49,23)" fg:x="194" fg:w="1"/><text x="77.5408%" y="302.50"></text></g><g><title>&lt;genexpr&gt; (statistics.py:198) (1 samples, 0.40%)</title><rect x="77.2908%" y="308" width="0.3984%" height="15" fill="rgb(215,19,7)" fg:x="194" fg:w="1"/><text x="77.5408%" y="318.50"></text></g><g><title>__new__ (fractions.py:93) (1 samples, 0.40%)</title><rect x="77.2908%" y="324" width="0.3984%" height="15" fill="rgb(238,81,41)" fg:x="194" fg:w="1"/><text x="77.5408%" y="334.50"></text></g><g><title>msg_curse (glances/plugins/glances_mem.py:255) (1 samples, 0.40%)</title><rect x="77.6892%" y="244" width="0.3984%" height="15" fill="rgb(210,199,37)" fg:x="195" fg:w="1"/><text x="77.9392%" y="254.50"></text></g><g><title>get_trend (glances/plugins/glances_plugin.py:305) (1 samples, 0.40%)</title><rect x="77.6892%" y="260" width="0.3984%" height="15" fill="rgb(244,192,49)" fg:x="195" fg:w="1"/><text x="77.9392%" y="270.50"></text></g><g><title>mean (statistics.py:331) (1 samples, 0.40%)</title><rect x="77.6892%" y="276" width="0.3984%" height="15" fill="rgb(226,211,11)" fg:x="195" fg:w="1"/><text x="77.9392%" y="286.50"></text></g><g><title>_convert (statistics.py:274) (1 samples, 0.40%)</title><rect x="77.6892%" y="292" width="0.3984%" height="15" fill="rgb(236,162,54)" fg:x="195" fg:w="1"/><text x="77.9392%" y="302.50"></text></g><g><title>msg_curse (glances/plugins/glances_memswap.py:187) (1 samples, 0.40%)</title><rect x="78.0876%" y="244" width="0.3984%" height="15" fill="rgb(220,229,9)" fg:x="196" fg:w="1"/><text x="78.3376%" y="254.50"></text></g><g><title>curse_add_stat (glances/plugins/glances_plugin.py:1060) (1 samples, 0.40%)</title><rect x="78.0876%" y="260" width="0.3984%" height="15" fill="rgb(250,87,22)" fg:x="196" fg:w="1"/><text x="78.3376%" y="270.50"></text></g><g><title>display (glances/outputs/glances_curses.py:607) (4 samples, 1.59%)</title><rect x="77.2908%" y="196" width="1.5936%" height="15" fill="rgb(239,43,17)" fg:x="194" fg:w="4"/><text x="77.5408%" y="206.50"></text></g><g><title>__get_stat_display (glances/outputs/glances_curses.py:583) (4 samples, 1.59%)</title><rect x="77.2908%" y="212" width="1.5936%" height="15" fill="rgb(231,177,25)" fg:x="194" fg:w="4"/><text x="77.5408%" y="222.50"></text></g><g><title>get_stats_display (glances/plugins/glances_plugin.py:939) (4 samples, 1.59%)</title><rect x="77.2908%" y="228" width="1.5936%" height="15" fill="rgb(219,179,1)" fg:x="194" fg:w="4"/><text x="77.5408%" y="238.50"></text></g><g><title>msg_curse (glances/plugins/glances_memswap.py:199) (1 samples, 0.40%)</title><rect x="78.4861%" y="244" width="0.3984%" height="15" fill="rgb(238,219,53)" fg:x="197" fg:w="1"/><text x="78.7361%" y="254.50"></text></g><g><title>curse_add_stat (glances/plugins/glances_plugin.py:1066) (1 samples, 0.40%)</title><rect x="78.4861%" y="260" width="0.3984%" height="15" fill="rgb(232,167,36)" fg:x="197" fg:w="1"/><text x="78.7361%" y="270.50"></text></g><g><title>auto_unit (glances/plugins/glances_plugin.py:1138) (1 samples, 0.40%)</title><rect x="78.4861%" y="276" width="0.3984%" height="15" fill="rgb(244,19,51)" fg:x="197" fg:w="1"/><text x="78.7361%" y="286.50"></text></g><g><title>msg_curse (glances/plugins/glances_processlist.py:527) (1 samples, 0.40%)</title><rect x="78.8845%" y="228" width="0.3984%" height="15" fill="rgb(224,6,22)" fg:x="198" fg:w="1"/><text x="79.1345%" y="238.50"></text></g><g><title>__sort_stats (glances/plugins/glances_processlist.py:754) (1 samples, 0.40%)</title><rect x="78.8845%" y="244" width="0.3984%" height="15" fill="rgb(224,145,5)" fg:x="198" fg:w="1"/><text x="79.1345%" y="254.50"></text></g><g><title>sort_stats (glances/processes.py:510) (1 samples, 0.40%)</title><rect x="78.8845%" y="260" width="0.3984%" height="15" fill="rgb(234,130,49)" fg:x="198" fg:w="1"/><text x="79.1345%" y="270.50"></text></g><g><title>_get_process_curses_cpu (glances/plugins/glances_processlist.py:198) (1 samples, 0.40%)</title><rect x="79.6813%" y="260" width="0.3984%" height="15" fill="rgb(254,6,2)" fg:x="200" fg:w="1"/><text x="79.9313%" y="270.50"></text></g><g><title>_get_process_curses_cpu (glances/plugins/glances_processlist.py:203) (2 samples, 0.80%)</title><rect x="80.0797%" y="260" width="0.7968%" height="15" fill="rgb(208,96,46)" fg:x="201" fg:w="2"/><text x="80.3297%" y="270.50"></text></g><g><title>get_alert (glances/plugins/glances_plugin.py:719) (1 samples, 0.40%)</title><rect x="80.8765%" y="276" width="0.3984%" height="15" fill="rgb(239,3,39)" fg:x="203" fg:w="1"/><text x="81.1265%" y="286.50"></text></g><g><title>get_stat_name (glances/plugins/glances_plugin.py:670) (1 samples, 0.40%)</title><rect x="80.8765%" y="292" width="0.3984%" height="15" fill="rgb(233,210,1)" fg:x="203" fg:w="1"/><text x="81.1265%" y="302.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:373) (6 samples, 2.39%)</title><rect x="79.2829%" y="244" width="2.3904%" height="15" fill="rgb(244,137,37)" fg:x="199" fg:w="6"/><text x="79.5329%" y="254.50">ge..</text></g><g><title>_get_process_curses_cpu (glances/plugins/glances_processlist.py:204) (2 samples, 0.80%)</title><rect x="80.8765%" y="260" width="0.7968%" height="15" fill="rgb(240,136,2)" fg:x="203" fg:w="2"/><text x="81.1265%" y="270.50"></text></g><g><title>get_alert (glances/plugins/glances_plugin.py:727) (1 samples, 0.40%)</title><rect x="81.2749%" y="276" width="0.3984%" height="15" fill="rgb(239,18,37)" fg:x="204" fg:w="1"/><text x="81.5249%" y="286.50"></text></g><g><title>_get_process_curses_mem (glances/plugins/glances_processlist.py:218) (1 samples, 0.40%)</title><rect x="81.6733%" y="260" width="0.3984%" height="15" fill="rgb(218,185,22)" fg:x="205" fg:w="1"/><text x="81.9233%" y="270.50"></text></g><g><title>get_alert (glances/plugins/glances_plugin.py:729) (1 samples, 0.40%)</title><rect x="82.0717%" y="276" width="0.3984%" height="15" fill="rgb(225,218,4)" fg:x="206" fg:w="1"/><text x="82.3217%" y="286.50"></text></g><g><title>get_limit (glances/plugins/glances_plugin.py:806) (1 samples, 0.40%)</title><rect x="82.0717%" y="292" width="0.3984%" height="15" fill="rgb(230,182,32)" fg:x="206" fg:w="1"/><text x="82.3217%" y="302.50"></text></g><g><title>get_alert (glances/plugins/glances_plugin.py:741) (1 samples, 0.40%)</title><rect x="82.4701%" y="276" width="0.3984%" height="15" fill="rgb(242,56,43)" fg:x="207" fg:w="1"/><text x="82.7201%" y="286.50"></text></g><g><title>get_alert (glances/plugins/glances_plugin.py:749) (1 samples, 0.40%)</title><rect x="82.8685%" y="276" width="0.3984%" height="15" fill="rgb(233,99,24)" fg:x="208" fg:w="1"/><text x="83.1185%" y="286.50"></text></g><g><title>manage_threshold (glances/plugins/glances_plugin.py:756) (1 samples, 0.40%)</title><rect x="82.8685%" y="292" width="0.3984%" height="15" fill="rgb(234,209,42)" fg:x="208" fg:w="1"/><text x="83.1185%" y="302.50"></text></g><g><title>add (glances/thresholds.py:59) (1 samples, 0.40%)</title><rect x="82.8685%" y="308" width="0.3984%" height="15" fill="rgb(227,7,12)" fg:x="208" fg:w="1"/><text x="83.1185%" y="318.50"></text></g><g><title>manage_action (glances/plugins/glances_plugin.py:762) (1 samples, 0.40%)</title><rect x="83.2669%" y="292" width="0.3984%" height="15" fill="rgb(245,203,43)" fg:x="209" fg:w="1"/><text x="83.5169%" y="302.50"></text></g><g><title>get_limit_action (glances/plugins/glances_plugin.py:837) (1 samples, 0.40%)</title><rect x="83.2669%" y="308" width="0.3984%" height="15" fill="rgb(238,205,33)" fg:x="209" fg:w="1"/><text x="83.5169%" y="318.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:376) (6 samples, 2.39%)</title><rect x="81.6733%" y="244" width="2.3904%" height="15" fill="rgb(231,56,7)" fg:x="205" fg:w="6"/><text x="81.9233%" y="254.50">ge..</text></g><g><title>_get_process_curses_mem (glances/plugins/glances_processlist.py:220) (5 samples, 1.99%)</title><rect x="82.0717%" y="260" width="1.9920%" height="15" fill="rgb(244,186,29)" fg:x="206" fg:w="5"/><text x="82.3217%" y="270.50">_..</text></g><g><title>get_alert (glances/plugins/glances_plugin.py:752) (2 samples, 0.80%)</title><rect x="83.2669%" y="276" width="0.7968%" height="15" fill="rgb(234,111,31)" fg:x="209" fg:w="2"/><text x="83.5169%" y="286.50"></text></g><g><title>manage_action (glances/plugins/glances_plugin.py:763) (1 samples, 0.40%)</title><rect x="83.6653%" y="292" width="0.3984%" height="15" fill="rgb(241,149,10)" fg:x="210" fg:w="1"/><text x="83.9153%" y="302.50"></text></g><g><title>auto_unit (glances/plugins/glances_plugin.py:1123) (1 samples, 0.40%)</title><rect x="84.8606%" y="276" width="0.3984%" height="15" fill="rgb(249,206,44)" fg:x="213" fg:w="1"/><text x="85.1106%" y="286.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:377) (4 samples, 1.59%)</title><rect x="84.0637%" y="244" width="1.5936%" height="15" fill="rgb(251,153,30)" fg:x="211" fg:w="4"/><text x="84.3137%" y="254.50"></text></g><g><title>_get_process_curses_vms (glances/plugins/glances_processlist.py:235) (4 samples, 1.59%)</title><rect x="84.0637%" y="260" width="1.5936%" height="15" fill="rgb(239,152,38)" fg:x="211" fg:w="4"/><text x="84.3137%" y="270.50"></text></g><g><title>auto_unit (glances/plugins/glances_plugin.py:1124) (1 samples, 0.40%)</title><rect x="85.2590%" y="276" width="0.3984%" height="15" fill="rgb(249,139,47)" fg:x="214" fg:w="1"/><text x="85.5090%" y="286.50"></text></g><g><title>auto_unit (glances/plugins/glances_plugin.py:1112) (1 samples, 0.40%)</title><rect x="86.0558%" y="276" width="0.3984%" height="15" fill="rgb(244,64,35)" fg:x="216" fg:w="1"/><text x="86.3058%" y="286.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:378) (3 samples, 1.20%)</title><rect x="85.6574%" y="244" width="1.1952%" height="15" fill="rgb(216,46,15)" fg:x="215" fg:w="3"/><text x="85.9074%" y="254.50"></text></g><g><title>_get_process_curses_rss (glances/plugins/glances_processlist.py:245) (3 samples, 1.20%)</title><rect x="85.6574%" y="260" width="1.1952%" height="15" fill="rgb(250,74,19)" fg:x="215" fg:w="3"/><text x="85.9074%" y="270.50"></text></g><g><title>auto_unit (glances/plugins/glances_plugin.py:1138) (1 samples, 0.40%)</title><rect x="86.4542%" y="276" width="0.3984%" height="15" fill="rgb(249,42,33)" fg:x="217" fg:w="1"/><text x="86.7042%" y="286.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:381) (1 samples, 0.40%)</title><rect x="86.8526%" y="244" width="0.3984%" height="15" fill="rgb(242,149,17)" fg:x="218" fg:w="1"/><text x="87.1026%" y="254.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:390) (1 samples, 0.40%)</title><rect x="87.2510%" y="244" width="0.3984%" height="15" fill="rgb(244,29,21)" fg:x="219" fg:w="1"/><text x="87.5010%" y="254.50"></text></g><g><title>_get_process_curses_time (glances/plugins/glances_processlist.py:278) (1 samples, 0.40%)</title><rect x="87.6494%" y="260" width="0.3984%" height="15" fill="rgb(220,130,37)" fg:x="220" fg:w="1"/><text x="87.8994%" y="270.50"></text></g><g><title>seconds_to_hms (glances/plugins/glances_processlist.py:37) (1 samples, 0.40%)</title><rect x="87.6494%" y="276" width="0.3984%" height="15" fill="rgb(211,67,2)" fg:x="220" fg:w="1"/><text x="87.8994%" y="286.50"></text></g><g><title>_get_process_curses_time (glances/plugins/glances_processlist.py:284) (1 samples, 0.40%)</title><rect x="88.0478%" y="260" width="0.3984%" height="15" fill="rgb(235,68,52)" fg:x="221" fg:w="1"/><text x="88.2978%" y="270.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:396) (3 samples, 1.20%)</title><rect x="87.6494%" y="244" width="1.1952%" height="15" fill="rgb(246,142,3)" fg:x="220" fg:w="3"/><text x="87.8994%" y="254.50"></text></g><g><title>_get_process_curses_time (glances/plugins/glances_processlist.py:286) (1 samples, 0.40%)</title><rect x="88.4462%" y="260" width="0.3984%" height="15" fill="rgb(241,25,7)" fg:x="222" fg:w="1"/><text x="88.6962%" y="270.50"></text></g><g><title>_get_process_curses_thread (glances/plugins/glances_processlist.py:294) (1 samples, 0.40%)</title><rect x="88.8446%" y="260" width="0.3984%" height="15" fill="rgb(242,119,39)" fg:x="223" fg:w="1"/><text x="89.0946%" y="270.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:399) (2 samples, 0.80%)</title><rect x="88.8446%" y="244" width="0.7968%" height="15" fill="rgb(241,98,45)" fg:x="223" fg:w="2"/><text x="89.0946%" y="254.50"></text></g><g><title>_get_process_curses_thread (glances/plugins/glances_processlist.py:299) (1 samples, 0.40%)</title><rect x="89.2430%" y="260" width="0.3984%" height="15" fill="rgb(254,28,30)" fg:x="224" fg:w="1"/><text x="89.4930%" y="270.50"></text></g><g><title>curse_add_line (glances/plugins/glances_plugin.py:969) (1 samples, 0.40%)</title><rect x="89.2430%" y="276" width="0.3984%" height="15" fill="rgb(241,142,54)" fg:x="224" fg:w="1"/><text x="89.4930%" y="286.50"></text></g><g><title>curse_add_line (glances/plugins/glances_plugin.py:969) (1 samples, 0.40%)</title><rect x="89.6414%" y="276" width="0.3984%" height="15" fill="rgb(222,85,15)" fg:x="225" fg:w="1"/><text x="89.8914%" y="286.50"></text></g><g><title>get_nice_alert (glances/plugins/glances_processlist.py:178) (1 samples, 0.40%)</title><rect x="90.0398%" y="276" width="0.3984%" height="15" fill="rgb(210,85,47)" fg:x="226" fg:w="1"/><text x="90.2898%" y="286.50"></text></g><g><title>get_nice_alert (glances/plugins/glances_processlist.py:180) (2 samples, 0.80%)</title><rect x="90.4382%" y="276" width="0.7968%" height="15" fill="rgb(224,206,25)" fg:x="227" fg:w="2"/><text x="90.6882%" y="286.50"></text></g><g><title>get_limit (glances/plugins/glances_plugin.py:806) (2 samples, 0.80%)</title><rect x="90.4382%" y="292" width="0.7968%" height="15" fill="rgb(243,201,19)" fg:x="227" fg:w="2"/><text x="90.6882%" y="302.50"></text></g><g><title>get_nice_alert (glances/plugins/glances_processlist.py:182) (1 samples, 0.40%)</title><rect x="91.2351%" y="276" width="0.3984%" height="15" fill="rgb(236,59,4)" fg:x="229" fg:w="1"/><text x="91.4851%" y="286.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:402) (6 samples, 2.39%)</title><rect x="89.6414%" y="244" width="2.3904%" height="15" fill="rgb(254,179,45)" fg:x="225" fg:w="6"/><text x="89.8914%" y="254.50">ge..</text></g><g><title>_get_process_curses_nice (glances/plugins/glances_processlist.py:312) (6 samples, 2.39%)</title><rect x="89.6414%" y="260" width="2.3904%" height="15" fill="rgb(226,14,10)" fg:x="225" fg:w="6"/><text x="89.8914%" y="270.50">_g..</text></g><g><title>get_nice_alert (glances/plugins/glances_processlist.py:185) (1 samples, 0.40%)</title><rect x="91.6335%" y="276" width="0.3984%" height="15" fill="rgb(244,27,41)" fg:x="230" fg:w="1"/><text x="91.8835%" y="286.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:408) (1 samples, 0.40%)</title><rect x="92.0319%" y="244" width="0.3984%" height="15" fill="rgb(235,35,32)" fg:x="231" fg:w="1"/><text x="92.2819%" y="254.50"></text></g><g><title>_get_process_curses_io_read (glances/plugins/glances_processlist.py:353) (1 samples, 0.40%)</title><rect x="92.0319%" y="260" width="0.3984%" height="15" fill="rgb(218,68,31)" fg:x="231" fg:w="1"/><text x="92.2819%" y="270.50"></text></g><g><title>curse_add_line (glances/plugins/glances_plugin.py:969) (1 samples, 0.40%)</title><rect x="92.4303%" y="292" width="0.3984%" height="15" fill="rgb(207,120,37)" fg:x="232" fg:w="1"/><text x="92.6803%" y="302.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:409) (2 samples, 0.80%)</title><rect x="92.4303%" y="244" width="0.7968%" height="15" fill="rgb(227,98,0)" fg:x="232" fg:w="2"/><text x="92.6803%" y="254.50"></text></g><g><title>_get_process_curses_io_write (glances/plugins/glances_processlist.py:357) (2 samples, 0.80%)</title><rect x="92.4303%" y="260" width="0.7968%" height="15" fill="rgb(207,7,3)" fg:x="232" fg:w="2"/><text x="92.6803%" y="270.50"></text></g><g><title>_get_process_curses_io (glances/plugins/glances_processlist.py:348) (2 samples, 0.80%)</title><rect x="92.4303%" y="276" width="0.7968%" height="15" fill="rgb(206,98,19)" fg:x="232" fg:w="2"/><text x="92.6803%" y="286.50"></text></g><g><title>curse_add_line (glances/plugins/glances_plugin.py:970) (1 samples, 0.40%)</title><rect x="92.8287%" y="292" width="0.3984%" height="15" fill="rgb(217,5,26)" fg:x="233" fg:w="1"/><text x="93.0787%" y="302.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:418) (1 samples, 0.40%)</title><rect x="93.2271%" y="244" width="0.3984%" height="15" fill="rgb(235,190,38)" fg:x="234" fg:w="1"/><text x="93.4771%" y="254.50"></text></g><g><title>split_cmdline (glances/plugins/glances_processlist.py:60) (2 samples, 0.80%)</title><rect x="93.6255%" y="260" width="0.7968%" height="15" fill="rgb(247,86,24)" fg:x="235" fg:w="2"/><text x="93.8755%" y="270.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:419) (3 samples, 1.20%)</title><rect x="93.6255%" y="244" width="1.1952%" height="15" fill="rgb(205,101,16)" fg:x="235" fg:w="3"/><text x="93.8755%" y="254.50"></text></g><g><title>split_cmdline (glances/plugins/glances_processlist.py:61) (1 samples, 0.40%)</title><rect x="94.4223%" y="260" width="0.3984%" height="15" fill="rgb(246,168,33)" fg:x="237" fg:w="1"/><text x="94.6723%" y="270.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:423) (1 samples, 0.40%)</title><rect x="94.8207%" y="244" width="0.3984%" height="15" fill="rgb(231,114,1)" fg:x="238" fg:w="1"/><text x="95.0707%" y="254.50"></text></g><g><title>isdir (genericpath.py:42) (1 samples, 0.40%)</title><rect x="94.8207%" y="260" width="0.3984%" height="15" fill="rgb(207,184,53)" fg:x="238" fg:w="1"/><text x="95.0707%" y="270.50"></text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:429) (1 samples, 0.40%)</title><rect x="95.2191%" y="244" width="0.3984%" height="15" fill="rgb(224,95,51)" fg:x="239" fg:w="1"/><text x="95.4691%" y="254.50"></text></g><g><title>display (glances/outputs/glances_curses.py:635) (43 samples, 17.13%)</title><rect x="78.8845%" y="196" width="17.1315%" height="15" fill="rgb(212,188,45)" fg:x="198" fg:w="43"/><text x="79.1345%" y="206.50">display (glances/outputs/gl..</text></g><g><title>get_stats_display (glances/plugins/glances_plugin.py:939) (43 samples, 17.13%)</title><rect x="78.8845%" y="212" width="17.1315%" height="15" fill="rgb(223,154,38)" fg:x="198" fg:w="43"/><text x="79.1345%" y="222.50">get_stats_display (glances/..</text></g><g><title>msg_curse (glances/plugins/glances_processlist.py:528) (42 samples, 16.73%)</title><rect x="79.2829%" y="228" width="16.7331%" height="15" fill="rgb(251,22,52)" fg:x="199" fg:w="42"/><text x="79.5329%" y="238.50">msg_curse (glances/plugins..</text></g><g><title>get_process_curses_data (glances/plugins/glances_processlist.py:442) (1 samples, 0.40%)</title><rect x="95.6175%" y="244" width="0.3984%" height="15" fill="rgb(229,209,22)" fg:x="240" fg:w="1"/><text x="95.8675%" y="254.50"></text></g><g><title>update (glances/outputs/glances_curses.py:1127) (49 samples, 19.52%)</title><rect x="76.8924%" y="164" width="19.5219%" height="15" fill="rgb(234,138,34)" fg:x="193" fg:w="49"/><text x="77.1424%" y="174.50">update (glances/outputs/glances..</text></g><g><title>flush (glances/outputs/glances_curses.py:1109) (49 samples, 19.52%)</title><rect x="76.8924%" y="180" width="19.5219%" height="15" fill="rgb(212,95,11)" fg:x="193" fg:w="49"/><text x="77.1424%" y="190.50">flush (glances/outputs/glances_..</text></g><g><title>display (glances/outputs/glances_curses.py:658) (1 samples, 0.40%)</title><rect x="96.0159%" y="196" width="0.3984%" height="15" fill="rgb(240,179,47)" fg:x="241" fg:w="1"/><text x="96.2659%" y="206.50"></text></g><g><title>__display_top (glances/outputs/glances_curses.py:817) (1 samples, 0.40%)</title><rect x="96.0159%" y="212" width="0.3984%" height="15" fill="rgb(240,163,11)" fg:x="241" fg:w="1"/><text x="96.2659%" y="222.50"></text></g><g><title>display_plugin (glances/outputs/glances_curses.py:1085) (1 samples, 0.40%)</title><rect x="96.0159%" y="228" width="0.3984%" height="15" fill="rgb(236,37,12)" fg:x="241" fg:w="1"/><text x="96.2659%" y="238.50"></text></g><g><title>all (251 samples, 100%)</title><rect x="0.0000%" y="52" width="100.0000%" height="15" fill="rgb(232,164,16)" fg:x="0" fg:w="251"/><text x="0.2500%" y="62.50"></text></g><g><title>process 7576:&quot;/usr/bin/python3 /home/nicolargo/.local/bin/glances&quot; (251 samples, 100.00%)</title><rect x="0.0000%" y="68" width="100.0000%" height="15" fill="rgb(244,205,15)" fg:x="0" fg:w="251"/><text x="0.2500%" y="78.50">process 7576:&quot;/usr/bin/python3 /home/nicolargo/.local/bin/glances&quot;</text></g><g><title>&lt;module&gt; (glances:8) (250 samples, 99.60%)</title><rect x="0.3984%" y="84" width="99.6016%" height="15" fill="rgb(223,117,47)" fg:x="1" fg:w="250"/><text x="0.6484%" y="94.50">&lt;module&gt; (glances:8)</text></g><g><title>main (glances/__init__.py:189) (250 samples, 99.60%)</title><rect x="0.3984%" y="100" width="99.6016%" height="15" fill="rgb(244,107,35)" fg:x="1" fg:w="250"/><text x="0.6484%" y="110.50">main (glances/__init__.py:189)</text></g><g><title>start (glances/__init__.py:141) (250 samples, 99.60%)</title><rect x="0.3984%" y="116" width="99.6016%" height="15" fill="rgb(205,140,8)" fg:x="1" fg:w="250"/><text x="0.6484%" y="126.50">start (glances/__init__.py:141)</text></g><g><title>serve_forever (glances/standalone.py:173) (250 samples, 99.60%)</title><rect x="0.3984%" y="132" width="99.6016%" height="15" fill="rgb(228,84,46)" fg:x="1" fg:w="250"/><text x="0.6484%" y="142.50">serve_forever (glances/standalone.py:173)</text></g><g><title>__serve_once (glances/standalone.py:157) (58 samples, 23.11%)</title><rect x="76.8924%" y="148" width="23.1076%" height="15" fill="rgb(254,188,9)" fg:x="193" fg:w="58"/><text x="77.1424%" y="158.50">__serve_once (glances/standalone.py:1..</text></g><g><title>update (glances/outputs/glances_curses.py:1142) (9 samples, 3.59%)</title><rect x="96.4143%" y="164" width="3.5857%" height="15" fill="rgb(206,112,54)" fg:x="242" fg:w="9"/><text x="96.6643%" y="174.50">upda..</text></g><g><title>__catch_key (glances/outputs/glances_curses.py:357) (9 samples, 3.59%)</title><rect x="96.4143%" y="180" width="3.5857%" height="15" fill="rgb(216,84,49)" fg:x="242" fg:w="9"/><text x="96.6643%" y="190.50">__ca..</text></g><g><title>get_key (glances/outputs/glances_curses.py:352) (9 samples, 3.59%)</title><rect x="96.4143%" y="196" width="3.5857%" height="15" fill="rgb(214,194,35)" fg:x="242" fg:w="9"/><text x="96.6643%" y="206.50">get_..</text></g></svg></svg>