v8/tools/heap-stats
Camillo Bruni 959d169c08 [tools] Improve heap stats tool documentation
Change-Id: I913e36afd76fe0f212e8c0c9b97e5ac52b2342d1
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3437045
Reviewed-by: Victor Gomes <victorgomes@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/main@{#78926}
2022-02-03 15:53:04 +00:00
..
categories.js [refactor] Rename StackFrameInfo to CallSiteInfo. 2021-12-14 10:03:25 +00:00
details-selection-template.html [tools] Improve heap-stats 2020-05-25 08:40:51 +00:00
details-selection.js [tools] Improve heap-stats 2020-05-25 08:40:51 +00:00
global-timeline-template.html [tools] Fix v8-heap-stats 2020-03-23 13:53:05 +00:00
global-timeline.js [tools] Improve heap-stats 2020-05-25 08:40:51 +00:00
helper.js [tools] Fix v8-heap-stats 2020-03-23 13:53:05 +00:00
histogram-viewer-template.html [tools] Fix v8-heap-stats 2020-03-23 13:53:05 +00:00
histogram-viewer.js [tools] Make paths in v8-heap-stats relative 2020-03-23 23:00:06 +00:00
index.html [tools] Improve heap stats tool documentation 2022-02-03 15:53:04 +00:00
model.js [tools] Fix v8-heap-stats 2020-03-23 13:53:05 +00:00
README.md
trace-file-reader-template.html [tools] Fix v8-heap-stats 2020-03-23 13:53:05 +00:00
trace-file-reader.js [tools] Improve heap stats tool documentation 2022-02-03 15:53:04 +00: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