node/deps/v8/tools/heap-stats
Michaël Zasso fd4f80ce54
deps: update V8 to 10.1.124.6
PR-URL: https://github.com/nodejs/node/pull/42657
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
2022-04-12 22:08:39 +02:00
..
categories.js deps: update V8 to 10.1.124.6 2022-04-12 22:08:39 +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.1.124.6 2022-04-12 22:08:39 +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