node/deps/v8/tools/heap-stats
Michaël Zasso 17a74ddd3d
deps: update V8 to 11.8.172.13
PR-URL: https://github.com/nodejs/node/pull/49639
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2023-10-10 08:25:41 +02:00
..
categories.js deps: update V8 to 11.8.172.13 2023-10-10 08:25:41 +02:00
details-selection-template.html deps: update V8 to 8.6.395 2020-10-18 20:16:47 +02:00
details-selection.js deps: update V8 to 8.6.395 2020-10-18 20:16:47 +02:00
global-timeline-template.html deps: update V8 to 8.3.110.9 2020-05-12 16:12:13 +02:00
global-timeline.js deps: update V8 to 8.6.395 2020-10-18 20:16:47 +02:00
helper.js deps: update V8 to 8.3.110.9 2020-05-12 16:12:13 +02:00
histogram-viewer-template.html deps: update V8 to 8.3.110.9 2020-05-12 16:12:13 +02:00
histogram-viewer.js deps: update V8 to 8.3.110.9 2020-05-12 16:12:13 +02:00
index.html deps: update V8 to 10.7.193.13 2022-10-11 07:24:33 +02:00
model.js deps: update V8 to 8.3.110.9 2020-05-12 16:12:13 +02:00
README.md deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
trace-file-reader-template.html deps: update V8 to 8.3.110.9 2020-05-12 16:12:13 +02:00
trace-file-reader.js deps: update V8 to 10.1.124.6 2022-04-12 22:08:39 +02:00

Heap Stats

Heap stats is a HTML-based tool for visualizing V8-internal object statistics. For example, the tool can be used to visualize how much heap memory is used for maintaining internal state versus actually allocated by the user.

The tool consumes log files produced by d8 (or Chromium) by passing --trace-gc-object-stats or a trace captured using Chrome's tracing infrastructure. Chrome trace files can either be processed as gzip or raw text files.

Hosting requires a web server, e.g.:

cd tools/heap-stats
python -m SimpleHTTPServer 8000