tree: 3ec3c50343fe123a9e7627c09d1541397d591a12 [path history] [tgz]
  1. bin/
  2. examples/
  3. hooks/
  4. skp_data/
  5. test_data/
  6. third_party/
  7. trace_viewer/
  8. .allow-devtools-save
  9. .bowerrc
  10. .gitignore
  11. AUTHORS
  12. bower.json
  13. BUILD.gn
  14. LICENSE
  15. OWNERS
  16. README.md
  17. run_dev_server
  18. run_tests
  19. trace2html
  20. trace_viewer.gyp
  21. vulcanize_trace_viewer
  22. why_imported
trace-viewer/README.md

Trace-Viewer is the javascript frontend for Chrome about:tracing and Android systrace.

It provides rich analysis and visualization capabilities for many types of trace files. Its particularly good at viewing linux kernel traces and Chrome's trace_event format. Trace viewer can be embedded as a component in your own code, or used from a plain checkout to turn trace files into standalone, emailable HTML files from the commandline:

trace2html my_trace.json --output=my_trace.html && open my_trace.html

Its easy to extend trace viewer to support your favorite trace format, or add domain specific visualizations to the UI to simplify drilling down into complex data.

Contributing, quick version

We welcome contributions! To hack on this code, from toplevel: ./run_dev_server

In any browser, navigate to http://localhost:8003/

Make sure tests pass before sending us a PR. For more details, read our contributing guide or check out the trace viewer wiki.