1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
|
<?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="342" onload="init(evt)" viewBox="0 0 1200 342" 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:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Path';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
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, known_font_width;
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");
known_font_width = get_monospace_width(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.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 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 get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
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(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
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 (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;
var to_update_text = [];
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);
to_update_text.push(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);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
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_for_elements(el);
}
// 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="342" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">I/O Syscall Count</text><text id="details" fill="rgb(0,0,0)" x="10" y="325.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="325.00"> </text><svg id="frames" x="10" width="1180" total_samples="6618184"><g><title>etc (1,015 samples, 0.02%)</title><rect x="0.0035%" y="261" width="0.0153%" height="15" fill="rgb(229,182,26)" fg:x="229" fg:w="1015"/><text x="0.2535%" y="271.50"></text></g><g><title>home (913 samples, 0.01%)</title><rect x="0.0188%" y="261" width="0.0138%" height="15" fill="rgb(240,189,38)" fg:x="1244" fg:w="913"/><text x="0.2688%" y="271.50"></text></g><g><title>/paul (911 samples, 0.01%)</title><rect x="0.0188%" y="245" width="0.0138%" height="15" fill="rgb(232,160,30)" fg:x="1246" fg:w="911"/><text x="0.2688%" y="255.50"></text></g><g><title>/bin (2,101 samples, 0.03%)</title><rect x="0.0351%" y="245" width="0.0317%" height="15" fill="rgb(247,94,46)" fg:x="2320" fg:w="2101"/><text x="0.2851%" y="255.50"></text></g><g><title>/lib64 (1,318 samples, 0.02%)</title><rect x="0.0669%" y="245" width="0.0199%" height="15" fill="rgb(239,99,37)" fg:x="4426" fg:w="1318"/><text x="0.3169%" y="255.50"></text></g><g><title>/ccache (1,267 samples, 0.02%)</title><rect x="0.0676%" y="229" width="0.0191%" height="15" fill="rgb(245,164,44)" fg:x="4477" fg:w="1267"/><text x="0.3176%" y="239.50"></text></g><g><title>/bin (1,256 samples, 0.02%)</title><rect x="0.0937%" y="229" width="0.0190%" height="15" fill="rgb(247,94,46)" fg:x="6198" fg:w="1256"/><text x="0.3437%" y="239.50"></text></g><g><title>/sbin (1,239 samples, 0.02%)</title><rect x="0.1126%" y="229" width="0.0187%" height="15" fill="rgb(247,142,46)" fg:x="7454" fg:w="1239"/><text x="0.3626%" y="239.50"></text></g><g><title>/local (2,509 samples, 0.04%)</title><rect x="0.0937%" y="245" width="0.0379%" height="15" fill="rgb(229,118,26)" fg:x="6198" fg:w="2509"/><text x="0.3437%" y="255.50"></text></g><g><title>usr (6,658 samples, 0.10%)</title><rect x="0.0349%" y="261" width="0.1006%" height="15" fill="rgb(236,129,34)" fg:x="2310" fg:w="6658"/><text x="0.2849%" y="271.50"></text></g><g><title>syscall`access (9,028 samples, 0.14%)</title><rect x="0.0000%" y="277" width="0.1364%" height="15" fill="rgb(230,164,28)" fg:x="0" fg:w="9028"/><text x="0.2500%" y="287.50"></text></g><g><title> (3,000 samples, 0.05%)</title><rect x="0.1388%" y="261" width="0.0453%" height="15" fill="rgb(255,230,55)" fg:x="9186" fg:w="3000"/><text x="0.3888%" y="271.50"></text></g><g><title>. (213,382 samples, 3.22%)</title><rect x="0.1841%" y="261" width="3.2242%" height="15" fill="rgb(238,153,36)" fg:x="12186" fg:w="213382"/><text x="0.4341%" y="271.50">.</text></g><g><title>deployruntime (1,010 samples, 0.02%)</title><rect x="3.4326%" y="261" width="0.0153%" height="15" fill="rgb(236,207,34)" fg:x="227176" fg:w="1010"/><text x="3.6826%" y="271.50"></text></g><g><title>dev (1,018 samples, 0.02%)</title><rect x="3.4479%" y="261" width="0.0154%" height="15" fill="rgb(236,187,34)" fg:x="228186" fg:w="1018"/><text x="3.6979%" y="271.50"></text></g><g><title>etc (1,797 samples, 0.03%)</title><rect x="3.4635%" y="261" width="0.0272%" height="15" fill="rgb(229,182,26)" fg:x="229222" fg:w="1797"/><text x="3.7135%" y="271.50"></text></g><g><title>/gopls (676 samples, 0.01%)</title><rect x="3.5323%" y="213" width="0.0102%" height="15" fill="rgb(233,144,31)" fg:x="233775" fg:w="676"/><text x="3.7823%" y="223.50"></text></g><g><title>/.cache (3,675 samples, 0.06%)</title><rect x="3.5057%" y="229" width="0.0555%" height="15" fill="rgb(245,154,44)" fg:x="232011" fg:w="3675"/><text x="3.7557%" y="239.50"></text></g><g><title>/index.crates.io-1949cf8c6b5b557f (3,235 samples, 0.05%)</title><rect x="3.5874%" y="181" width="0.0489%" height="15" fill="rgb(248,137,47)" fg:x="237419" fg:w="3235"/><text x="3.8374%" y="191.50"></text></g><g><title>/.cargo (10,992 samples, 0.17%)</title><rect x="3.5612%" y="229" width="0.1661%" height="15" fill="rgb(244,154,43)" fg:x="235686" fg:w="10992"/><text x="3.8112%" y="239.50"></text></g><g><title>/registry (10,939 samples, 0.17%)</title><rect x="3.5620%" y="213" width="0.1653%" height="15" fill="rgb(243,137,42)" fg:x="235739" fg:w="10939"/><text x="3.8120%" y="223.50"></text></g><g><title>/src (10,003 samples, 0.15%)</title><rect x="3.5761%" y="197" width="0.1511%" height="15" fill="rgb(230,129,27)" fg:x="236675" fg:w="10003"/><text x="3.8261%" y="207.50"></text></g><g><title>/index.crates.io-6f17d22bba15001f (6,024 samples, 0.09%)</title><rect x="3.6363%" y="181" width="0.0910%" height="15" fill="rgb(246,137,45)" fg:x="240654" fg:w="6024"/><text x="3.8863%" y="191.50"></text></g><g><title>/google-chrome (766 samples, 0.01%)</title><rect x="3.7357%" y="213" width="0.0116%" height="15" fill="rgb(240,144,38)" fg:x="247235" fg:w="766"/><text x="3.9857%" y="223.50"></text></g><g><title>/.config (1,516 samples, 0.02%)</title><rect x="3.7273%" y="229" width="0.0229%" height="15" fill="rgb(239,154,37)" fg:x="246678" fg:w="1516"/><text x="3.9773%" y="239.50"></text></g><g><title>/python3.12 (835 samples, 0.01%)</title><rect x="3.7587%" y="197" width="0.0126%" height="15" fill="rgb(242,160,41)" fg:x="248755" fg:w="835"/><text x="4.0087%" y="207.50"></text></g><g><title>/site-packages (795 samples, 0.01%)</title><rect x="3.7593%" y="181" width="0.0120%" height="15" fill="rgb(239,119,37)" fg:x="248795" fg:w="795"/><text x="4.0093%" y="191.50"></text></g><g><title>/lib (1,314 samples, 0.02%)</title><rect x="3.7532%" y="213" width="0.0199%" height="15" fill="rgb(234,99,32)" fg:x="248393" fg:w="1314"/><text x="4.0032%" y="223.50"></text></g><g><title>/.cpan (2,605 samples, 0.04%)</title><rect x="3.7740%" y="197" width="0.0394%" height="15" fill="rgb(242,154,41)" fg:x="249771" fg:w="2605"/><text x="4.0240%" y="207.50"></text></g><g><title>/build (2,319 samples, 0.04%)</title><rect x="3.7783%" y="181" width="0.0350%" height="15" fill="rgb(238,94,37)" fg:x="250057" fg:w="2319"/><text x="4.0283%" y="191.50"></text></g><g><title>/components (676 samples, 0.01%)</title><rect x="3.8371%" y="53" width="0.0102%" height="15" fill="rgb(238,164,36)" fg:x="253947" fg:w="676"/><text x="4.0871%" y="63.50"></text></g><g><title>/espressif (1,587 samples, 0.02%)</title><rect x="3.8349%" y="69" width="0.0240%" height="15" fill="rgb(240,141,38)" fg:x="253798" fg:w="1587"/><text x="4.0849%" y="79.50"></text></g><g><title>/hal (2,742 samples, 0.04%)</title><rect x="3.8299%" y="85" width="0.0414%" height="15" fill="rgb(225,145,22)" fg:x="253472" fg:w="2742"/><text x="4.0799%" y="95.50"></text></g><g><title>/lib (1,120 samples, 0.02%)</title><rect x="3.8714%" y="85" width="0.0169%" height="15" fill="rgb(234,99,32)" fg:x="256214" fg:w="1120"/><text x="4.1214%" y="95.50"></text></g><g><title>/tf-a (859 samples, 0.01%)</title><rect x="3.8883%" y="69" width="0.0130%" height="15" fill="rgb(237,124,35)" fg:x="257335" fg:w="859"/><text x="4.1383%" y="79.50"></text></g><g><title>/trusted-firmware-a (835 samples, 0.01%)</title><rect x="3.8887%" y="53" width="0.0126%" height="15" fill="rgb(238,124,36)" fg:x="257359" fg:w="835"/><text x="4.1387%" y="63.50"></text></g><g><title>/modules (5,370 samples, 0.08%)</title><rect x="3.8262%" y="101" width="0.0811%" height="15" fill="rgb(244,113,43)" fg:x="253225" fg:w="5370"/><text x="4.0762%" y="111.50"></text></g><g><title>/tee (1,261 samples, 0.02%)</title><rect x="3.8883%" y="85" width="0.0191%" height="15" fill="rgb(245,127,44)" fg:x="257334" fg:w="1261"/><text x="4.1383%" y="95.50"></text></g><g><title>/boards (915 samples, 0.01%)</title><rect x="3.9132%" y="85" width="0.0138%" height="15" fill="rgb(241,113,39)" fg:x="258985" fg:w="915"/><text x="4.1632%" y="95.50"></text></g><g><title>/zephyr (3,858 samples, 0.06%)</title><rect x="3.9073%" y="101" width="0.0583%" height="15" fill="rgb(242,152,41)" fg:x="258595" fg:w="3858"/><text x="4.1573%" y="111.50"></text></g><g><title>/tests (870 samples, 0.01%)</title><rect x="3.9525%" y="85" width="0.0131%" height="15" fill="rgb(234,127,32)" fg:x="261583" fg:w="870"/><text x="4.2025%" y="95.50"></text></g><g><title>/4e828deff8afa7002fa398da8bf223191b047f15d1d3660bd9cf516f2856d13c (9,727 samples, 0.15%)</title><rect x="3.8254%" y="149" width="0.1470%" height="15" fill="rgb(230,117,28)" fg:x="253175" fg:w="9727"/><text x="4.0754%" y="159.50"></text></g><g><title>/diff (9,727 samples, 0.15%)</title><rect x="3.8254%" y="133" width="0.1470%" height="15" fill="rgb(241,139,40)" fg:x="253175" fg:w="9727"/><text x="4.0754%" y="143.50"></text></g><g><title>/app (9,723 samples, 0.15%)</title><rect x="3.8255%" y="117" width="0.1469%" height="15" fill="rgb(248,115,47)" fg:x="253179" fg:w="9723"/><text x="4.0755%" y="127.50"></text></g><g><title>/latex (956 samples, 0.01%)</title><rect x="4.0289%" y="37" width="0.0144%" height="15" fill="rgb(247,125,46)" fg:x="266642" fg:w="956"/><text x="4.2789%" y="47.50"></text></g><g><title>/texmf-dist (3,102 samples, 0.05%)</title><rect x="3.9969%" y="69" width="0.0469%" height="15" fill="rgb(232,127,30)" fg:x="264521" fg:w="3102"/><text x="4.2469%" y="79.50"></text></g><g><title>/tex (1,333 samples, 0.02%)</title><rect x="4.0236%" y="53" width="0.0201%" height="15" fill="rgb(247,127,46)" fg:x="266290" fg:w="1333"/><text x="4.2736%" y="63.50"></text></g><g><title>/texlive (3,153 samples, 0.05%)</title><rect x="3.9961%" y="85" width="0.0476%" height="15" fill="rgb(238,127,36)" fg:x="264471" fg:w="3153"/><text x="4.2461%" y="95.50"></text></g><g><title>/usr (4,736 samples, 0.07%)</title><rect x="3.9731%" y="117" width="0.0716%" height="15" fill="rgb(236,116,34)" fg:x="262945" fg:w="4736"/><text x="4.2231%" y="127.50"></text></g><g><title>/share (4,395 samples, 0.07%)</title><rect x="3.9782%" y="101" width="0.0664%" height="15" fill="rgb(248,122,47)" fg:x="263286" fg:w="4395"/><text x="4.2282%" y="111.50"></text></g><g><title>/5a9a00229a7638d55aab0c4066256de27ab1c31c2b8bb4204fcd40f5bf0a313f (4,888 samples, 0.07%)</title><rect x="3.9725%" y="149" width="0.0739%" height="15" fill="rgb(243,125,41)" fg:x="262909" fg:w="4888"/><text x="4.2225%" y="159.50"></text></g><g><title>/diff (4,886 samples, 0.07%)</title><rect x="3.9726%" y="133" width="0.0738%" height="15" fill="rgb(241,139,40)" fg:x="262911" fg:w="4886"/><text x="4.2226%" y="143.50"></text></g><g><title>/icons (774 samples, 0.01%)</title><rect x="4.0740%" y="85" width="0.0117%" height="15" fill="rgb(244,134,43)" fg:x="269627" fg:w="774"/><text x="4.3240%" y="95.50"></text></g><g><title>/usr (1,775 samples, 0.03%)</title><rect x="4.0591%" y="117" width="0.0268%" height="15" fill="rgb(236,116,34)" fg:x="268642" fg:w="1775"/><text x="4.3091%" y="127.50"></text></g><g><title>/share (1,143 samples, 0.02%)</title><rect x="4.0687%" y="101" width="0.0173%" height="15" fill="rgb(248,122,47)" fg:x="269274" fg:w="1143"/><text x="4.3187%" y="111.50"></text></g><g><title>/617d1743e673f18b196ac25f5d4c933f3603684be22758a14b790ecd71364396 (1,991 samples, 0.03%)</title><rect x="4.0578%" y="149" width="0.0301%" height="15" fill="rgb(243,120,42)" fg:x="268551" fg:w="1991"/><text x="4.3078%" y="159.50"></text></g><g><title>/diff (1,969 samples, 0.03%)</title><rect x="4.0581%" y="133" width="0.0298%" height="15" fill="rgb(241,139,40)" fg:x="268573" fg:w="1969"/><text x="4.3081%" y="143.50"></text></g><g><title>/usr (905 samples, 0.01%)</title><rect x="4.0978%" y="117" width="0.0137%" height="15" fill="rgb(236,116,34)" fg:x="271201" fg:w="905"/><text x="4.3478%" y="127.50"></text></g><g><title>/7d8051c18df5e406ebf1465860d36ee5fe210074eb144e4509ec278960b6dfce (1,146 samples, 0.02%)</title><rect x="4.0949%" y="149" width="0.0173%" height="15" fill="rgb(249,161,48)" fg:x="271009" fg:w="1146"/><text x="4.3449%" y="159.50"></text></g><g><title>/diff (1,125 samples, 0.02%)</title><rect x="4.0952%" y="133" width="0.0170%" height="15" fill="rgb(241,139,40)" fg:x="271030" fg:w="1125"/><text x="4.3452%" y="143.50"></text></g><g><title>/components (691 samples, 0.01%)</title><rect x="4.1334%" y="53" width="0.0104%" height="15" fill="rgb(238,164,36)" fg:x="273554" fg:w="691"/><text x="4.3834%" y="63.50"></text></g><g><title>/espressif (1,681 samples, 0.03%)</title><rect x="4.1306%" y="69" width="0.0254%" height="15" fill="rgb(240,141,38)" fg:x="273371" fg:w="1681"/><text x="4.3806%" y="79.50"></text></g><g><title>/hal (3,161 samples, 0.05%)</title><rect x="4.1241%" y="85" width="0.0478%" height="15" fill="rgb(225,145,22)" fg:x="272942" fg:w="3161"/><text x="4.3741%" y="95.50"></text></g><g><title>/lib (1,638 samples, 0.02%)</title><rect x="4.1719%" y="85" width="0.0247%" height="15" fill="rgb(234,99,32)" fg:x="276103" fg:w="1638"/><text x="4.4219%" y="95.50"></text></g><g><title>/modules (6,052 samples, 0.09%)</title><rect x="4.1189%" y="101" width="0.0914%" height="15" fill="rgb(244,113,43)" fg:x="272599" fg:w="6052"/><text x="4.3689%" y="111.50"></text></g><g><title>/tee (910 samples, 0.01%)</title><rect x="4.1966%" y="85" width="0.0137%" height="15" fill="rgb(245,127,44)" fg:x="277741" fg:w="910"/><text x="4.4466%" y="95.50"></text></g><g><title>/tf-a (910 samples, 0.01%)</title><rect x="4.1966%" y="69" width="0.0137%" height="15" fill="rgb(237,124,35)" fg:x="277741" fg:w="910"/><text x="4.4466%" y="79.50"></text></g><g><title>/trusted-firmware-a (891 samples, 0.01%)</title><rect x="4.1969%" y="53" width="0.0135%" height="15" fill="rgb(238,124,36)" fg:x="277760" fg:w="891"/><text x="4.4469%" y="63.50"></text></g><g><title>/boards (1,217 samples, 0.02%)</title><rect x="4.2169%" y="85" width="0.0184%" height="15" fill="rgb(241,113,39)" fg:x="279085" fg:w="1217"/><text x="4.4669%" y="95.50"></text></g><g><title>/samples (824 samples, 0.01%)</title><rect x="4.2474%" y="85" width="0.0125%" height="15" fill="rgb(244,145,43)" fg:x="281101" fg:w="824"/><text x="4.4974%" y="95.50"></text></g><g><title>/zephyr (5,229 samples, 0.08%)</title><rect x="4.2104%" y="101" width="0.0790%" height="15" fill="rgb(242,152,41)" fg:x="278651" fg:w="5229"/><text x="4.4604%" y="111.50"></text></g><g><title>/tests (1,386 samples, 0.02%)</title><rect x="4.2685%" y="85" width="0.0209%" height="15" fill="rgb(234,127,32)" fg:x="282494" fg:w="1386"/><text x="4.5185%" y="95.50"></text></g><g><title>/b858795cc6c2167f9780575e2df82e5f83afa805a4392df8f2d3d9687f4184ec (11,759 samples, 0.18%)</title><rect x="4.1180%" y="149" width="0.1777%" height="15" fill="rgb(234,97,32)" fg:x="272539" fg:w="11759"/><text x="4.3680%" y="159.50"></text></g><g><title>/diff (11,759 samples, 0.18%)</title><rect x="4.1180%" y="133" width="0.1777%" height="15" fill="rgb(241,139,40)" fg:x="272539" fg:w="11759"/><text x="4.3680%" y="143.50"></text></g><g><title>/app (11,749 samples, 0.18%)</title><rect x="4.1182%" y="117" width="0.1775%" height="15" fill="rgb(248,115,47)" fg:x="272549" fg:w="11749"/><text x="4.3682%" y="127.50"></text></g><g><title>/e243fb558903b0aef6f650a46857ae06ed17e66315e9673a3fcebbcdf33e4edf (1,095 samples, 0.02%)</title><rect x="4.3042%" y="149" width="0.0165%" height="15" fill="rgb(246,157,46)" fg:x="284862" fg:w="1095"/><text x="4.5542%" y="159.50"></text></g><g><title>/diff (1,095 samples, 0.02%)</title><rect x="4.3042%" y="133" width="0.0165%" height="15" fill="rgb(241,139,40)" fg:x="284862" fg:w="1095"/><text x="4.5542%" y="143.50"></text></g><g><title>/app (1,092 samples, 0.02%)</title><rect x="4.3043%" y="117" width="0.0165%" height="15" fill="rgb(248,115,47)" fg:x="284865" fg:w="1092"/><text x="4.5543%" y="127.50"></text></g><g><title>/node_modules (949 samples, 0.01%)</title><rect x="4.3064%" y="101" width="0.0143%" height="15" fill="rgb(244,164,43)" fg:x="285008" fg:w="949"/><text x="4.5564%" y="111.50"></text></g><g><title>/containers (33,833 samples, 0.51%)</title><rect x="3.8175%" y="197" width="0.5112%" height="15" fill="rgb(238,164,36)" fg:x="252647" fg:w="33833"/><text x="4.0675%" y="207.50"></text></g><g><title>/storage (33,824 samples, 0.51%)</title><rect x="3.8176%" y="181" width="0.5111%" height="15" fill="rgb(248,122,47)" fg:x="252656" fg:w="33824"/><text x="4.0676%" y="191.50"></text></g><g><title>/overlay (33,733 samples, 0.51%)</title><rect x="3.8190%" y="165" width="0.5097%" height="15" fill="rgb(243,136,42)" fg:x="252747" fg:w="33733"/><text x="4.0690%" y="175.50"></text></g><g><title>/facter-4.10.0 (671 samples, 0.01%)</title><rect x="4.3457%" y="149" width="0.0101%" height="15" fill="rgb(238,155,37)" fg:x="287606" fg:w="671"/><text x="4.5957%" y="159.50"></text></g><g><title>/Puppet (932 samples, 0.01%)</title><rect x="4.3990%" y="117" width="0.0141%" height="15" fill="rgb(239,129,38)" fg:x="291133" fg:w="932"/><text x="4.6490%" y="127.50"></text></g><g><title>/puppet-8.10.0 (1,181 samples, 0.02%)</title><rect x="4.3953%" y="149" width="0.0178%" height="15" fill="rgb(238,134,37)" fg:x="290892" fg:w="1181"/><text x="4.6453%" y="159.50"></text></g><g><title>/ri (1,152 samples, 0.02%)</title><rect x="4.3958%" y="133" width="0.0174%" height="15" fill="rgb(234,124,32)" fg:x="290921" fg:w="1152"/><text x="4.6458%" y="143.50"></text></g><g><title>/Cop (665 samples, 0.01%)</title><rect x="4.4475%" y="101" width="0.0100%" height="15" fill="rgb(245,159,44)" fg:x="294342" fg:w="665"/><text x="4.6975%" y="111.50"></text></g><g><title>/rubocop-1.54.2 (904 samples, 0.01%)</title><rect x="4.4442%" y="149" width="0.0137%" height="15" fill="rgb(250,124,49)" fg:x="294127" fg:w="904"/><text x="4.6942%" y="159.50"></text></g><g><title>/ri (898 samples, 0.01%)</title><rect x="4.4443%" y="133" width="0.0136%" height="15" fill="rgb(234,124,32)" fg:x="294133" fg:w="898"/><text x="4.6943%" y="143.50"></text></g><g><title>/RuboCop (865 samples, 0.01%)</title><rect x="4.4448%" y="117" width="0.0131%" height="15" fill="rgb(245,119,44)" fg:x="294166" fg:w="865"/><text x="4.6948%" y="127.50"></text></g><g><title>/rubocop-1.64.1 (707 samples, 0.01%)</title><rect x="4.4579%" y="149" width="0.0107%" height="15" fill="rgb(234,124,32)" fg:x="295031" fg:w="707"/><text x="4.7079%" y="159.50"></text></g><g><title>/ri (696 samples, 0.01%)</title><rect x="4.4581%" y="133" width="0.0105%" height="15" fill="rgb(234,124,32)" fg:x="295042" fg:w="696"/><text x="4.7081%" y="143.50"></text></g><g><title>/RuboCop (684 samples, 0.01%)</title><rect x="4.4582%" y="117" width="0.0103%" height="15" fill="rgb(245,119,44)" fg:x="295054" fg:w="684"/><text x="4.7082%" y="127.50"></text></g><g><title>/rubocop-1.69.1 (828 samples, 0.01%)</title><rect x="4.4686%" y="149" width="0.0125%" height="15" fill="rgb(230,124,28)" fg:x="295738" fg:w="828"/><text x="4.7186%" y="159.50"></text></g><g><title>/ri (821 samples, 0.01%)</title><rect x="4.4687%" y="133" width="0.0124%" height="15" fill="rgb(234,124,32)" fg:x="295745" fg:w="821"/><text x="4.7187%" y="143.50"></text></g><g><title>/RuboCop (799 samples, 0.01%)</title><rect x="4.4690%" y="117" width="0.0121%" height="15" fill="rgb(245,119,44)" fg:x="295767" fg:w="799"/><text x="4.7190%" y="127.50"></text></g><g><title>/doc (11,669 samples, 0.18%)</title><rect x="4.3333%" y="165" width="0.1763%" height="15" fill="rgb(235,159,33)" fg:x="286787" fg:w="11669"/><text x="4.5833%" y="175.50"></text></g><g><title>/gem (15,000 samples, 0.23%)</title><rect x="4.3294%" y="197" width="0.2266%" height="15" fill="rgb(232,137,29)" fg:x="286526" fg:w="15000"/><text x="4.5794%" y="207.50"></text></g><g><title>/ruby (14,994 samples, 0.23%)</title><rect x="4.3295%" y="181" width="0.2266%" height="15" fill="rgb(236,124,34)" fg:x="286532" fg:w="14994"/><text x="4.5795%" y="191.50"></text></g><g><title>/gems (3,022 samples, 0.05%)</title><rect x="4.5104%" y="165" width="0.0457%" height="15" fill="rgb(231,137,29)" fg:x="298504" fg:w="3022"/><text x="4.7604%" y="175.50"></text></g><g><title>/lazy (1,243 samples, 0.02%)</title><rect x="4.5569%" y="181" width="0.0188%" height="15" fill="rgb(251,125,51)" fg:x="301585" fg:w="1243"/><text x="4.8069%" y="191.50"></text></g><g><title>/bundle (937 samples, 0.01%)</title><rect x="4.5844%" y="101" width="0.0142%" height="15" fill="rgb(240,94,39)" fg:x="303404" fg:w="937"/><text x="4.8344%" y="111.50"></text></g><g><title>/ruby (937 samples, 0.01%)</title><rect x="4.5844%" y="85" width="0.0142%" height="15" fill="rgb(236,124,34)" fg:x="303404" fg:w="937"/><text x="4.8344%" y="95.50"></text></g><g><title>/2.7.0 (927 samples, 0.01%)</title><rect x="4.5846%" y="69" width="0.0140%" height="15" fill="rgb(233,111,31)" fg:x="303414" fg:w="927"/><text x="4.8346%" y="79.50"></text></g><g><title>/gems (871 samples, 0.01%)</title><rect x="4.5854%" y="53" width="0.0132%" height="15" fill="rgb(231,137,29)" fg:x="303470" fg:w="871"/><text x="4.8354%" y="63.50"></text></g><g><title>/puppet-editor-services (1,079 samples, 0.02%)</title><rect x="4.5840%" y="149" width="0.0163%" height="15" fill="rgb(242,134,40)" fg:x="303380" fg:w="1079"/><text x="4.8340%" y="159.50"></text></g><g><title>/libexec (1,075 samples, 0.02%)</title><rect x="4.5841%" y="133" width="0.0162%" height="15" fill="rgb(237,99,35)" fg:x="303384" fg:w="1075"/><text x="4.8341%" y="143.50"></text></g><g><title>/vendor (1,065 samples, 0.02%)</title><rect x="4.5842%" y="117" width="0.0161%" height="15" fill="rgb(244,117,43)" fg:x="303394" fg:w="1065"/><text x="4.8342%" y="127.50"></text></g><g><title>/nvim (4,007 samples, 0.06%)</title><rect x="4.5563%" y="197" width="0.0605%" height="15" fill="rgb(225,141,22)" fg:x="301542" fg:w="4007"/><text x="4.8063%" y="207.50"></text></g><g><title>/mason (2,721 samples, 0.04%)</title><rect x="4.5757%" y="181" width="0.0411%" height="15" fill="rgb(249,120,48)" fg:x="302828" fg:w="2721"/><text x="4.8257%" y="191.50"></text></g><g><title>/packages (2,717 samples, 0.04%)</title><rect x="4.5758%" y="165" width="0.0411%" height="15" fill="rgb(239,160,37)" fg:x="302832" fg:w="2717"/><text x="4.8258%" y="175.50"></text></g><g><title>/share (56,104 samples, 0.85%)</title><rect x="3.7730%" y="213" width="0.8477%" height="15" fill="rgb(248,122,47)" fg:x="249707" fg:w="56104"/><text x="4.0230%" y="223.50"></text></g><g><title>/.local (57,598 samples, 0.87%)</title><rect x="3.7522%" y="229" width="0.8703%" height="15" fill="rgb(229,163,26)" fg:x="248325" fg:w="57598"/><text x="4.0022%" y="239.50"></text></g><g><title>/content-v2 (1,591 samples, 0.02%)</title><rect x="4.6269%" y="197" width="0.0240%" height="15" fill="rgb(239,164,38)" fg:x="306217" fg:w="1591"/><text x="4.8769%" y="207.50"></text></g><g><title>/sha512 (1,396 samples, 0.02%)</title><rect x="4.6299%" y="181" width="0.0211%" height="15" fill="rgb(246,122,45)" fg:x="306412" fg:w="1396"/><text x="4.8799%" y="191.50"></text></g><g><title>/.npm (2,520 samples, 0.04%)</title><rect x="4.6248%" y="229" width="0.0381%" height="1
|