# trace-viewer **Repository Path**: mirrors_thlorenz/trace-viewer ## Basic Information - **Project Name**: trace-viewer - **Description**: Frontend for chrome://tracing and Android systrace. - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-05-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Trace-Viewer is the javascript frontend for Chrome [about:tracing](http://dev.chromium.org/developers/how-tos/trace-event-profiling-tool) and [Android systrace](http://developer.android.com/tools/help/systrace.html). 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](https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/edit). Trace viewer can be [embedded](https://github.com/google/trace-viewer/wiki/Embedding) 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](https://github.com/google/trace-viewer/wiki/ExtendingAndCustomizing) 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](https://github.com/google/trace-viewer/wiki/Contributing) or check out the [trace viewer wiki](https://github.com/google/trace-viewer/wiki).