tree: 2674f325aad5bffb1e18940c60f9d49aec7f7213 [path history] [tgz]
  1. categories.js
  2. details-selection.html
  3. details-selection.js
  4. global-timeline.html
  5. global-timeline.js
  6. helper.js
  7. histogram-viewer.html
  8. histogram-viewer.js
  9. index.html
  10. model.js
  11. README.md
  12. trace-file-reader.html
  13. trace-file-reader.js
src/v8/tools/heap-stats/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