Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 03-May-2024 | 563 | 17 | 11 | |
categories.js | D | 03-May-2024 | 6.2 KiB | 198 | 190 | |
details-selection.html | D | 03-May-2024 | 2.9 KiB | 146 | 125 | |
details-selection.js | D | 03-May-2024 | 13.2 KiB | 409 | 358 | |
global-timeline.html | D | 03-May-2024 | 441 | 16 | 13 | |
global-timeline.js | D | 03-May-2024 | 6.5 KiB | 213 | 187 | |
helper.js | D | 03-May-2024 | 601 | 24 | 17 | |
histogram-viewer.html | D | 03-May-2024 | 498 | 19 | 16 | |
histogram-viewer.js | D | 03-May-2024 | 5.3 KiB | 191 | 162 | |
index.html | D | 03-May-2024 | 2.9 KiB | 102 | 80 | |
model.js | D | 03-May-2024 | 3.4 KiB | 106 | 85 | |
trace-file-reader.html | D | 03-May-2024 | 1.5 KiB | 87 | 72 | |
trace-file-reader.js | D | 03-May-2024 | 10.7 KiB | 310 | 266 |
README.md
1# Heap Stats 2 3Heap stats is a HTML-based tool for visualizing V8-internal object statistics. 4For example, the tool can be used to visualize how much heap memory is used for 5maintaining internal state versus actually allocated by the user. 6 7The tool consumes log files produced by d8 (or Chromium) by passing 8`--trace-gc-object-stats` or a trace captured using Chrome's tracing 9infrastructure. Chrome trace files can either be processed as gzip or raw text 10files. 11 12 13Hosting requires a web server, e.g.: 14 15 cd tools/heap-stats 16 python -m SimpleHTTPServer 8000 17