node/deps/v8/tools/heap-stats
Michaël Zasso e31f0a7d25
deps: update V8 to 7.7.299.4
PR-URL: https://github.com/nodejs/node/pull/28918
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2019-08-19 09:25:23 +02:00
..
README.md deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
categories.js deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
details-selection.html deps: update V8 to 6.8.275.24 2018-07-26 08:31:50 +02:00
details-selection.js deps: update V8 to 6.8.275.24 2018-07-26 08:31:50 +02:00
global-timeline.html
global-timeline.js deps: update V8 to 6.9.427.22 2018-09-07 20:59:13 +02:00
helper.js deps: update V8 to 6.7.288.43 2018-06-01 09:58:27 +02:00
histogram-viewer.html deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
histogram-viewer.js deps: update V8 to 6.8.275.24 2018-07-26 08:31:50 +02:00
index.html deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
model.js deps: update V8 to 6.7.288.43 2018-06-01 09:58:27 +02:00
trace-file-reader.html deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
trace-file-reader.js deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00

README.md

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