summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorNicolas Hennion <nicolashennion@gmail.com>2021-05-24 09:34:00 +0200
committerGitHub <noreply@github.com>2021-05-24 09:34:00 +0200
commit788ad374ecfd81347680c4742d94141571651226 (patch)
treea307ce529cb70f574a7af735d7807cdce73899a8 /docs
parent4e9591162274502c903c04ce862db6183f94fb06 (diff)
Add files via upload
Diffstat (limited to 'docs')
-rw-r--r--docs/_static/glances-flame.svg1012
1 files changed, 1012 insertions, 0 deletions
diff --git a/docs/_static/glances-flame.svg b/docs/_static/glances-flame.svg
new file mode 100644
index 00000000..efe1e278
--- /dev/null
+++ b/docs/_static/glances-flame.svg
@@ -0,0 +1,1012 @@
+<?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="486" onload="init(evt)" viewBox="0 0 1200 486" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
+<!-- NOTES: -->
+<defs>
+ <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
+ <stop stop-color="#eeeeee" offset="5%" />
+ <stop stop-color="#eeeeb0" offset="95%" />
+ </linearGradient>
+</defs>
+<style type="text/css">
+ text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
+ #search, #ignorecase { opacity:0.1; cursor:pointer; }
+ #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
+ #subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
+ #title { text-anchor:middle; font-size:17px}
+ #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[
+ "use strict";
+ var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
+ function init(evt) {
+ details = document.getElementById("details").firstChild;
+ searchbtn = document.getElementById("search");
+ ignorecaseBtn = document.getElementById("ignorecase");
+ unzoombtn = document.getElementById("unzoom");
+ matchedtxt = document.getElementById("matched");
+ svg = document.getElementsByTagName("svg")[0];
+ searching = 0;
+ currentSearchTerm = null;
+ }
+
+ 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);
+ }
+ else if (e.target.id == "unzoom") unzoom();
+ else if (e.target.id == "search") search_prompt();
+ else if (e.target.id == "ignorecase") toggle_ignorecase();
+ }, false)
+
+ // mouse-over for info
+ // show
+ window.addEventListener("mouseover", function(e) {
+ var target = find_group(e.target);
+ if (target) details.nodeValue = "Function: " + 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)
+
+ // ctrl-I to toggle case-sensitive search
+ window.addEventListener("keydown",function (e) {
+ if (e.ctrlKey && e.keyCode === 73) {
+ e.preventDefault();
+ toggle_ignorecase();
+ }
+ }, false)
+
+ // functions
+ 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["_orig_" + attr] != undefined) return;
+ if (e.attributes[attr] == undefined) return;
+ if (val == undefined) val = e.attributes[attr].value;
+ e.setAttribute("_orig_" + attr, val);
+ }
+ function orig_load(e, attr) {
+ if (e.attributes["_orig_"+attr] == undefined) return;
+ e.attributes[attr].value = e.attributes["_orig_" + attr].value;
+ e.removeAttribute("_orig_"+attr);
+ }
+ function g_to_text(e) {
+ var text = find_child(e, "title").firstChild.nodeValue;
+ return (text)
+ }
+ function g_to_func(e) {
+ var func = g_to_text(e);
+ // if there's any manipulation we want to do to the function
+ // name before it's searched, do it here before returning.
+ return (func);
+ }
+ function update_text(e) {
+ var r = find_child(e, "rect");
+ var t = find_child(e, "text");
+ var w = parseFloat(r.attributes.width.value) -3;
+ var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
+ t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
+
+ // Smaller than this size won't fit anything
+ if (w < 2 * 12 * 0.59) {
+ t.textContent = "";
+ return;
+ }
+
+ t.textContent = txt;
+ // Fit in full text width
+ if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
+ return;
+
+ for (var x = txt.length - 2; x > 0; x--) {
+ if (t.getSubStringLength(0, x + 2) <= w) {
+ t.textContent = txt.substring(0, x) + "..";
+ return;
+ }
+ }
+ t.textContent = "";
+ }
+
+ // zoom
+ function zoom_reset(e) {
+ if (e.attributes != undefined) {
+ orig_load(e, "x");
+ orig_load(e, "width");
+ }
+ if (e.childNodes == undefined) return;
+ for (var i = 0, c = e.childNodes; i < c.length; i++) {
+ zoom_reset(c[i]);
+ }
+ }
+ function zoom_child(e, x, ratio) {
+ if (e.attributes != undefined) {
+ if (e.attributes.x != undefined) {
+ orig_save(e, "x");
+ e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
+ if (e.tagName == "text")
+ e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
+ }
+ if (e.attributes.width != undefined) {
+ orig_save(e, "width");
+ e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
+ }
+ }
+
+ if (e.childNodes == undefined) return;
+ for (var i = 0, c = e.childNodes; i < c.length; i++) {
+ zoom_child(c[i], x - 10, ratio);
+ }
+ }
+ function zoom_parent(e) {
+ if (e.attributes) {
+ if (e.attributes.x != undefined) {
+ orig_save(e, "x");
+ e.attributes.x.value = 10;
+ }
+ if (e.attributes.width != undefined) {
+ orig_save(e, "width");
+ e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
+ }
+ }
+ if (e.childNodes == undefined) return;
+ for (var i = 0, c = e.childNodes; i < c.length; i++) {
+ zoom_parent(c[i]);
+ }
+ }
+ function zoom(node) {
+ var attr = find_child(node, "rect").attributes;
+ var width = parseFloat(attr.width.value);
+ var xmin = parseFloat(attr.x.value);
+ var xmax = parseFloat(xmin + width);
+ var ymin = parseFloat(attr.y.value);
+ var ratio = (svg.width.baseVal.value - 2 * 10) / width;
+
+ // XXX: Workaround for JavaScript float issues (fix me)
+ var fudge = 0.0001;
+
+ unzoombtn.classList.remove("hide");
+
+ var el = document.getElementById("frames").children;
+ for (var i = 0; i < el.length; i++) {
+ var e = el[i];
+ var a = find_child(e, "rect").attributes;
+ var ex = parseFloat(a.x.value);
+ var ew = parseFloat(a.width.value);
+ var upstack;
+ // Is it an ancestor
+ if (0 == 0) {
+ upstack = parseFloat(a.y.value) > ymin;
+ } else {
+ upstack = parseFloat(a.y.value) < ymin;
+ }
+ if (upstack) {
+ // Direct ancestor
+ if (ex <= xmin && (ex+ew+fudge) >= 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 + fudge >= xmax) {
+ e.classList.add("hide");
+ }
+ else {
+ zoom_child(e, xmin, ratio);
+ update_text(e);
+ }
+ }
+ }
+ search();
+ }
+ function unzoom() {
+ unzoombtn.classList.add("hide");
+ var el = document.getElementById("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();
+ }
+
+ // search
+ function toggle_ignorecase() {
+ ignorecase = !ignorecase;
+ if (ignorecase) {
+ ignorecaseBtn.classList.add("show");
+ } else {
+ ignorecaseBtn.classList.remove("show");
+ }
+ reset_search();
+ search();
+ }
+ function reset_search() {
+ var el = document.querySelectorAll("#frames rect");
+ for (var i = 0; i < el.length; i++) {
+ orig_load(el[i], "fill")
+ }
+ }
+ function search_prompt() {
+ if (!searching) {
+ var term = prompt("Enter a search term (regexp " +
+ "allowed, eg: ^ext4_)"
+ + (ignorecase ? ", ignoring case" : "")
+ + "\nPress Ctrl-i to toggle case sensitivity", "");
+ if (term != null) {
+ currentSearchTerm = term;
+ search();
+ }
+ } else {
+ reset_search();
+ searching = 0;
+ currentSearchTerm = null;
+ searchbtn.classList.remove("show");
+ searchbtn.firstChild.nodeValue = "Search"
+ matchedtxt.classList.add("hide");
+ matchedtxt.firstChild.nodeValue = ""
+ }
+ }
+ function search(term) {
+ if (currentSearchTerm === null) return;
+ var term = currentSearchTerm;
+
+ var re = new RegExp(term, ignorecase ? 'i' : '');
+ var el = document.getElementById("frames").children;
+ var matches = new Object();
+ var maxwidth = 0;
+ for (var i = 0; i < el.length; i++) {
+ var e = el[i];
+ 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 = parseFloat(rect.attributes.width.value);
+ if (w > maxwidth)
+ maxwidth = w;
+
+ if (func.match(re)) {
+ // highlight
+ var x = parseFloat(rect.attributes.x.value);
+ orig_save(rect, "fill");
+ rect.attributes.fill.value = "rgb(230,0,230)";
+
+ // remember matches
+ if (matches[x] == undefined) {
+ matches[x] = w;
+ } else {
+ if (w > matches[x]) {
+ // overwrite with parent
+ matches[x] = w;
+ }
+ }
+ searching = 1;
+ }
+ }
+ if (!searching)
+ return;
+
+ searchbtn.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.
+ var fudge = 0.0001; // JavaScript floating point
+ for (var k in keys) {
+ var x = parseFloat(keys[k]);
+ var w = matches[keys[k]];
+ if (x >= lastx + lastw - fudge) {
+ count += w;
+ lastx = x;
+ lastw = w;
+ }
+ }
+ // display matched percent
+ matchedtxt.classList.remove("hide");
+ var pct = 100 * count / maxwidth;
+ if (pct != 100) pct = pct.toFixed(1)
+ matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
+ }
+]]>
+</script>
+<rect x="0.0" y="0" width="1200.0" height="486.0" fill="url(#background)" />
+<text id="title" x="600.00" y="24" >Flame Graph</text>
+<text id="details" x="10.00" y="469" > </text>
+<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
+<text id="search" x="1090.00" y="24" >Search</text>
+<text id="ignorecase" x="1174.00" y="24" >ic</text>
+<text id="matched" x="1090.00" y="469" > </text>
+<g id="frames">
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:dmesg_a:121 (3 samples, 0.59%)</title><rect x="116.6" y="213" width="7.0" height="15.0" fill="rgb(244,198,45)" rx="2" ry="2" />
+<text x="119.64" y="223.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:username:695 (3 samples, 0.59%)</title><rect x="61.0" y="181" width="7.0" height="15.0" fill="rgb(221,12,11)" rx="2" ry="2" />
+<text x="64.00" y="191.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:wrapper:1576 (1 samples, 0.20%)</title><rect x="47.1" y="165" width="2.3" height="15.0" fill="rgb(224,55,32)" rx="2" ry="2" />
+<text x="50.09" y="175.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/subprocess.py:_communicate:1554 (2 samples, 0.39%)</title><rect x="102.7" y="165" width="4.7" height="15.0" fill="rgb(251,12,1)" rx="2" ry="2" />
+<text x="105.73" y="175.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_common.py:__init__:338 (1 samples, 0.20%)</title><rect x="51.7" y="149" width="2.3" height="15.0" fill="rgb(249,139,46)" rx="2" ry="2" />
+<text x="54.73" y="159.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/plugins/glances_processlist.py:get_process_curses_data:405 (1 samples, 0.20%)</title><rect x="193.1" y="229" width="2.4" height="15.0" fill="rgb(226,198,52)" rx="2" ry="2" />
+<text x="196.14" y="239.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:uids:733 (2 samples, 0.39%)</title><rect x="63.3" y="149" width="4.7" height="15.0" fill="rgb(248,220,30)" rx="2" ry="2" />
+<text x="66.32" y="159.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:_get_cpu_info_from_dmesg:1314 (3 samples, 0.59%)</title><rect x="116.6" y="229" width="7.0" height="15.0" fill="rgb(214,129,34)" rx="2" ry="2" />
+<text x="119.64" y="239.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:wrapper:1576 (2 samples, 0.39%)</title><rect x="56.4" y="165" width="4.6" height="15.0" fill="rgb(205,19,42)" rx="2" ry="2" />
+<text x="59.37" y="175.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/http/client.py:getresponse:1346 (3 samples, 0.59%)</title><rect x="10.0" y="85" width="7.0" height="15.0" fill="rgb(244,74,17)" rx="2" ry="2" />
+<text x="13.00" y="95.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/outputs/glances_curses.py:update:1075 (6 samples, 1.18%)</title><rect x="186.2" y="309" width="13.9" height="15.0" fill="rgb(234,35,4)" rx="2" ry="2" />
+<text x="189.19" y="319.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:_init:334 (1 samples, 0.20%)</title><rect x="19.3" y="165" width="2.3" height="15.0" fill="rgb(213,192,19)" rx="2" ry="2" />
+<text x="22.27" y="175.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/outputs/glances_curses.py:display:635 (2 samples, 0.39%)</title><rect x="195.5" y="277" width="4.6" height="15.0" fill="rgb(231,220,3)" rx="2" ry="2" />
+<text x="198.46" y="287.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/standalone.py:__serve_once:135 (76 samples, 14.93%)</title><rect x="10.0" y="325" width="176.2" height="15.0" fill="rgb(240,198,23)" rx="2" ry="2" />
+<text x="13.00" y="335.5" >/home/nhe/dev/glances/..</text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/standalone.py:__serve_once:154 (433 samples, 85.07%)</title><rect x="186.2" y="325" width="1003.8" height="15.0" fill="rgb(252,163,12)" rx="2" ry="2" />
+<text x="189.19" y="335.5" >/home/nhe/dev/glances/glances/standalone.py:__serve_once:154</text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/subprocess.py:_communicate:1557 (2 samples, 0.39%)</title><rect x="98.1" y="165" width="4.6" height="15.0" fill="rgb(244,38,41)" rx="2" ry="2" />
+<text x="101.09" y="175.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:memory_info:1054 (1 samples, 0.20%)</title><rect x="88.8" y="165" width="2.3" height="15.0" fill="rgb(234,77,10)" rx="2" ry="2" />
+<text x="91.82" y="175.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/plugins/glances_ip.py:update:86 (1 samples, 0.20%)</title><rect x="17.0" y="261" width="2.3" height="15.0" fill="rgb(242,116,48)" rx="2" ry="2" />
+<text x="19.95" y="271.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_common.py:open_binary:711 (1 samples, 0.20%)</title><rect x="63.3" y="53" width="2.3" height="15.0" fill="rgb(230,13,32)" rx="2" ry="2" />
+<text x="66.32" y="63.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:run_and_get_stdout:207 (21 samples, 4.13%)</title><rect x="123.6" y="213" width="48.7" height="15.0" fill="rgb(225,193,47)" rx="2" ry="2" />
+<text x="126.60" y="223.5" >/hom..</text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/requests/sessions.py:get:555 (3 samples, 0.59%)</title><rect x="10.0" y="181" width="7.0" height="15.0" fill="rgb(240,60,8)" rx="2" ry="2" />
+<text x="13.00" y="191.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/socket.py:readinto:586 (3 samples, 0.59%)</title><rect x="10.0" y="37" width="7.0" height="15.0" fill="rgb(242,114,13)" rx="2" ry="2" />
+<text x="13.00" y="47.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/selectors.py:unregister:248 (1 samples, 0.20%)</title><rect x="95.8" y="133" width="2.3" height="15.0" fill="rgb(228,199,42)" rx="2" ry="2" />
+<text x="98.78" y="143.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:oneshot:487 (1 samples, 0.20%)</title><rect x="91.1" y="165" width="2.4" height="15.0" fill="rgb(244,146,17)" rx="2" ry="2" />
+<text x="94.14" y="175.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:wrapper:1576 (2 samples, 0.39%)</title><rect x="56.4" y="133" width="4.6" height="15.0" fill="rgb(207,50,21)" rx="2" ry="2" />
+<text x="59.37" y="143.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/outputs/glances_curses.py:display:603 (4 samples, 0.79%)</title><rect x="186.2" y="277" width="9.3" height="15.0" fill="rgb(239,66,25)" rx="2" ry="2" />
+<text x="189.19" y="287.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/plugins/glances_processlist.py:get_process_curses_data:388 (1 samples, 0.20%)</title><rect x="186.2" y="229" width="2.3" height="15.0" fill="rgb(237,44,27)" rx="2" ry="2" />
+<text x="189.19" y="239.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/subprocess.py:communicate:863 (3 samples, 0.59%)</title><rect x="95.8" y="181" width="6.9" height="15.0" fill="rgb(210,179,37)" rx="2" ry="2" />
+<text x="98.78" y="191.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/plugins/glances_plugin.py:wrapper:1033 (1 samples, 0.20%)</title><rect x="179.2" y="293" width="2.4" height="15.0" fill="rgb(209,148,36)" rx="2" ry="2" />
+<text x="182.23" y="303.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:as_dict:535 (2 samples, 0.39%)</title><rect x="91.1" y="197" width="4.7" height="15.0" fill="rgb(232,10,2)" rx="2" ry="2" />
+<text x="94.14" y="207.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/plugins/glances_system.py:update:107 (3 samples, 0.59%)</title><rect x="172.3" y="261" width="6.9" height="15.0" fill="rgb(243,1,21)" rx="2" ry="2" />
+<text x="175.28" y="271.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/subprocess.py:_communicate:1560 (3 samples, 0.59%)</title><rect x="109.7" y="165" width="6.9" height="15.0" fill="rgb(224,174,21)" rx="2" ry="2" />
+<text x="112.69" y="175.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:process_iter:1446 (28 samples, 5.50%)</title><rect x="30.9" y="213" width="64.9" height="15.0" fill="rgb(228,180,14)" rx="2" ry="2" />
+<text x="33.86" y="223.5" >/home/n..</text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/outputs/glances_curses.py:__catch_key:347 (427 samples, 83.89%)</title><rect x="200.1" y="293" width="989.9" height="15.0" fill="rgb(230,194,42)" rx="2" ry="2" />
+<text x="203.10" y="303.5" >/home/nhe/dev/glances/glances/outputs/glances_curses.py:__catch_key:347</text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/__main__.py:&lt;module&gt;:29 (509 samples, 100.00%)</title><rect x="10.0" y="389" width="1180.0" height="15.0" fill="rgb(239,169,22)" rx="2" ry="2" />
+<text x="13.00" y="399.5" >/home/nhe/dev/glances/glances/__main__.py:&lt;module&gt;:29</text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:cmdline:677 (4 samples, 0.79%)</title><rect x="35.5" y="181" width="9.3" height="15.0" fill="rgb(218,139,33)" rx="2" ry="2" />
+<text x="38.50" y="191.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/__init__.py:start:118 (509 samples, 100.00%)</title><rect x="10.0" y="357" width="1180.0" height="15.0" fill="rgb(222,221,28)" rx="2" ry="2" />
+<text x="13.00" y="367.5" >/home/nhe/dev/glances/glances/__init__.py:start:118</text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:sysctl_machdep_cpu_hw_cpufrequency:129 (3 samples, 0.59%)</title><rect x="109.7" y="213" width="6.9" height="15.0" fill="rgb(238,0,32)" rx="2" ry="2" />
+<text x="112.69" y="223.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_common.py:wrapper:454 (1 samples, 0.20%)</title><rect x="88.8" y="181" width="2.3" height="15.0" fill="rgb(229,120,17)" rx="2" ry="2" />
+<text x="91.82" y="191.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:wrapper:1576 (2 samples, 0.39%)</title><rect x="63.3" y="101" width="4.7" height="15.0" fill="rgb(243,93,27)" rx="2" ry="2" />
+<text x="66.32" y="111.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:wrapper:1576 (4 samples, 0.79%)</title><rect x="21.6" y="133" width="9.3" height="15.0" fill="rgb(239,68,38)" rx="2" ry="2" />
+<text x="24.59" y="143.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/plugins/glances_plugin.py:wrapper:1033 (73 samples, 14.34%)</title><rect x="10.0" y="277" width="169.2" height="15.0" fill="rgb(231,196,27)" rx="2" ry="2" />
+<text x="13.00" y="287.5" >/home/nhe/dev/glances..</text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/subprocess.py:communicate:850 (3 samples, 0.59%)</title><rect x="172.3" y="213" width="6.9" height="15.0" fill="rgb(205,24,47)" rx="2" ry="2" />
+<text x="175.28" y="223.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:_get_cpu_info_from_sysctl:1472 (3 samples, 0.59%)</title><rect x="109.7" y="229" width="6.9" height="15.0" fill="rgb(232,64,54)" rx="2" ry="2" />
+<text x="112.69" y="239.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:_parse_stat_file:1619 (1 samples, 0.20%)</title><rect x="58.7" y="101" width="2.3" height="15.0" fill="rgb(252,142,43)" rx="2" ry="2" />
+<text x="61.68" y="111.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/plugins/glances_plugin.py:get_limit:756 (1 samples, 0.20%)</title><rect x="193.1" y="181" width="2.4" height="15.0" fill="rgb(251,179,34)" rx="2" ry="2" />
+<text x="196.14" y="191.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_common.py:open_text:723 (1 samples, 0.20%)</title><rect x="35.5" y="133" width="2.3" height="15.0" fill="rgb(208,8,28)" rx="2" ry="2" />
+<text x="38.50" y="143.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:wrapper:1578 (2 samples, 0.39%)</title><rect x="49.4" y="165" width="4.6" height="15.0" fill="rgb(228,143,45)" rx="2" ry="2" />
+<text x="52.41" y="175.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/http/client.py:begin:307 (3 samples, 0.59%)</title><rect x="10.0" y="69" width="7.0" height="15.0" fill="rgb(250,153,25)" rx="2" ry="2" />
+<text x="13.00" y="79.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:io_counters:763 (3 samples, 0.59%)</title><rect x="47.1" y="181" width="6.9" height="15.0" fill="rgb(253,16,8)" rx="2" ry="2" />
+<text x="50.09" y="191.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:io_counters:1740 (1 samples, 0.20%)</title><rect x="47.1" y="149" width="2.3" height="15.0" fill="rgb(206,218,19)" rx="2" ry="2" />
+<text x="50.09" y="159.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:wrapper:1576 (4 samples, 0.79%)</title><rect x="35.5" y="165" width="9.3" height="15.0" fill="rgb(214,130,51)" rx="2" ry="2" />
+<text x="38.50" y="175.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_common.py:wrapper:447 (1 samples, 0.20%)</title><rect x="61.0" y="165" width="2.3" height="15.0" fill="rgb(241,167,15)" rx="2" ry="2" />
+<text x="64.00" y="175.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/requests/sessions.py:request:542 (3 samples, 0.59%)</title><rect x="10.0" y="165" width="7.0" height="15.0" fill="rgb(212,221,26)" rx="2" ry="2" />
+<text x="13.00" y="175.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/plugins/glances_processlist.py:get_nice_alert:161 (1 samples, 0.20%)</title><rect x="193.1" y="197" width="2.4" height="15.0" fill="rgb(233,97,10)" rx="2" ry="2" />
+<text x="196.14" y="207.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/requests/adapters.py:send:449 (3 samples, 0.59%)</title><rect x="10.0" y="133" width="7.0" height="15.0" fill="rgb(241,117,38)" rx="2" ry="2" />
+<text x="13.00" y="143.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/plugins/glances_processlist.py:_get_process_curses_vms:219 (1 samples, 0.20%)</title><rect x="186.2" y="213" width="2.3" height="15.0" fill="rgb(227,48,7)" rx="2" ry="2" />
+<text x="189.19" y="223.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:wrapper:1576 (1 samples, 0.20%)</title><rect x="88.8" y="149" width="2.3" height="15.0" fill="rgb(242,35,52)" rx="2" ry="2" />
+<text x="91.82" y="159.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/subprocess.py:_communicate:1557 (1 samples, 0.20%)</title><rect x="107.4" y="165" width="2.3" height="15.0" fill="rgb(243,36,34)" rx="2" ry="2" />
+<text x="110.37" y="175.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/platform.py:architecture:868 (3 samples, 0.59%)</title><rect x="172.3" y="245" width="6.9" height="15.0" fill="rgb(253,89,41)" rx="2" ry="2" />
+<text x="175.28" y="255.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/subprocess.py:communicate:863 (3 samples, 0.59%)</title><rect x="109.7" y="181" width="6.9" height="15.0" fill="rgb(230,19,32)" rx="2" ry="2" />
+<text x="112.69" y="191.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:cat_proc_cpuinfo:105 (3 samples, 0.59%)</title><rect x="95.8" y="213" width="6.9" height="15.0" fill="rgb(210,177,10)" rx="2" ry="2" />
+<text x="98.78" y="223.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/subprocess.py:_communicate:1557 (3 samples, 0.59%)</title><rect x="116.6" y="165" width="7.0" height="15.0" fill="rgb(214,46,43)" rx="2" ry="2" />
+<text x="119.64" y="175.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:_parse_stat_file:1618 (1 samples, 0.20%)</title><rect x="56.4" y="101" width="2.3" height="15.0" fill="rgb(238,4,47)" rx="2" ry="2" />
+<text x="59.37" y="111.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/runpy.py:_run_code:85 (509 samples, 100.00%)</title><rect x="10.0" y="405" width="1180.0" height="15.0" fill="rgb(225,34,32)" rx="2" ry="2" />
+<text x="13.00" y="415.5" >/usr/lib64/python3.6/runpy.py:_run_code:85</text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:net_if_stats:1076 (1 samples, 0.20%)</title><rect x="179.2" y="245" width="2.4" height="15.0" fill="rgb(253,121,10)" rx="2" ry="2" />
+<text x="182.23" y="255.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/http/client.py:_read_status:268 (3 samples, 0.59%)</title><rect x="10.0" y="53" width="7.0" height="15.0" fill="rgb(249,103,28)" rx="2" ry="2" />
+<text x="13.00" y="63.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/requests/sessions.py:send:655 (3 samples, 0.59%)</title><rect x="10.0" y="149" width="7.0" height="15.0" fill="rgb(252,85,6)" rx="2" ry="2" />
+<text x="13.00" y="159.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:wrapper:1576 (4 samples, 0.79%)</title><rect x="21.6" y="101" width="9.3" height="15.0" fill="rgb(230,194,23)" rx="2" ry="2" />
+<text x="24.59" y="111.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:_get_cpu_info_from_proc_cpuinfo:1140 (3 samples, 0.59%)</title><rect x="95.8" y="229" width="6.9" height="15.0" fill="rgb(254,33,35)" rx="2" ry="2" />
+<text x="98.78" y="239.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:run_and_get_stdout:207 (3 samples, 0.59%)</title><rect x="109.7" y="197" width="6.9" height="15.0" fill="rgb(212,206,18)" rx="2" ry="2" />
+<text x="112.69" y="207.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/subprocess.py:communicate:863 (3 samples, 0.59%)</title><rect x="116.6" y="181" width="7.0" height="15.0" fill="rgb(242,20,3)" rx="2" ry="2" />
+<text x="119.64" y="191.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:net_if_stats:2216 (1 samples, 0.20%)</title><rect x="179.2" y="261" width="2.4" height="15.0" fill="rgb(243,80,18)" rx="2" ry="2" />
+<text x="182.23" y="271.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/processes.py:&lt;listcomp&gt;:272 (33 samples, 6.48%)</title><rect x="19.3" y="229" width="76.5" height="15.0" fill="rgb(239,216,43)" rx="2" ry="2" />
+<text x="22.27" y="239.5" >/home/nh..</text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:wrapper:1576 (2 samples, 0.39%)</title><rect x="63.3" y="133" width="4.7" height="15.0" fill="rgb(227,4,46)" rx="2" ry="2" />
+<text x="66.32" y="143.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_common.py:wrapper:454 (2 samples, 0.39%)</title><rect x="56.4" y="117" width="4.6" height="15.0" fill="rgb(247,46,47)" rx="2" ry="2" />
+<text x="59.37" y="127.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:_get_cpu_info_from_cpuid:1124 (21 samples, 4.13%)</title><rect x="123.6" y="229" width="48.7" height="15.0" fill="rgb(238,189,20)" rx="2" ry="2" />
+<text x="126.60" y="239.5" >/hom..</text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/urllib3/connectionpool.py:_make_request:440 (3 samples, 0.59%)</title><rect x="10.0" y="101" width="7.0" height="15.0" fill="rgb(250,170,12)" rx="2" ry="2" />
+<text x="13.00" y="111.5" ></text>
+</g>
+<g >
+<title>/usr/lib64/python3.6/platform.py:_syscmd_file:817 (3 samples, 0.59%)</title><rect x="172.3" y="229" width="6.9" height="15.0" fill="rgb(239,10,16)" rx="2" ry="2" />
+<text x="175.28" y="239.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/outputs/glances_curses.py:display_plugin:994 (1 samples, 0.20%)</title><rect x="197.8" y="245" width="2.3" height="15.0" fill="rgb(233,101,3)" rx="2" ry="2" />
+<text x="200.78" y="255.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:get_cpu_info:1763 (3 samples, 0.59%)</title><rect x="95.8" y="245" width="6.9" height="15.0" fill="rgb(219,216,19)" rx="2" ry="2" />
+<text x="98.78" y="255.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/glances/plugins/glances_processlist.py:msg_curse:539 (4 samples, 0.79%)</title><rect x="186.2" y="245" width="9.3" height="15.0" fill="rgb(205,91,8)" rx="2" ry="2" />
+<text x="189.19" y="255.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/__init__.py:as_dict:524 (1 samples, 0.20%)</title><rect x="30.9" y="197" width="2.3" height="15.0" fill="rgb(227,16,26)" rx="2" ry="2" />
+<text x="33.86" y="207.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_pslinux.py:_read_status_file:1650 (1 samples, 0.20%)</title><rect x="65.6" y="69" width="2.4" height="15.0" fill="rgb(243,88,15)" rx="2" ry="2" />
+<text x="68.64" y="79.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib/python3.6/site-packages/cpuinfo/cpuinfo.py:_get_cpu_info_from_lscpu:1252 (3 samples, 0.59%)</title><rect x="102.7" y="229" width="7.0" height="15.0" fill="rgb(253,206,34)" rx="2" ry="2" />
+<text x="105.73" y="239.5" ></text>
+</g>
+<g >
+<title>/home/nhe/dev/glances/venv/lib64/python3.6/site-packages/psutil/_common.py:wrapper:4