A Python library for Chrome Trace Viewer files
Project description
chrometrace
A Python library for creating Chrome Trace Viewer files. The Chrome Trace Viewer can be opened in Chromium-based browsers (e.g. Google Chrome, Microsoft Edge, Chromium, ...) by entering chrome://tracing into the address bar.
The trace event format and types are defined in this document.
Installation
Install the package from PyPi using the following command.
pip install chrometrace
Usage
import chrometrace
# Create the trace sink as a context manager
with chrometrace.TraceSink("trace.json") as trace_sink:
# Create a process tracer called myapp from the trace sink
myapp_tracer = trace_sink.process_tracer("myapp", process_id=1337)
# Create a thread tracer for the renderer thread from the process tracer
renderer_thread_tracer = myapp_tracer.thread_tracer("RendererThread", 1)
# Write a complete event at 10 us taking 1000 us with the name my_function
renderer_thread_tracer.complete("my_function", timestamp_us=10, duration_us=1000)
Supported trace formats
Currently only the JSON Array Format is supported due to its simplicity. Support for the JSON Object Format might be added in the future.
Supported trace events
- Duration Events
- Begin
- End
- Complete Events
- Instant Events
- With different scopes
- Counter Events
- Async Events
- Flow Events
- Metadata Events
- Name process / thread
- Define process / thread sort index
- Process labels
- Sample Events
- Object Events
- Mark Events
- Clock Sync Events
- Context Events
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file chrometrace-0.1.2.tar.gz
.
File metadata
- Download URL: chrometrace-0.1.2.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.0 CPython/3.11.2 Darwin/22.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf56b3115cd241dfd97c2311e223c833cccfe8e526452281f3285897855a001c |
|
MD5 | 676a0b02d9fe4e28a5b6085cc247be15 |
|
BLAKE2b-256 | 5899f4dc4595f733809f9a4ad02e5712ff792c435fe3aed8f254480f0c20f7ef |
File details
Details for the file chrometrace-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: chrometrace-0.1.2-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.0 CPython/3.11.2 Darwin/22.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8fbe1f3af2867c6209122d3964dedbdb5951a36fbee25f719b0541fdc065140 |
|
MD5 | 306100cba9123ff3c2e6d5e137c8018c |
|
BLAKE2b-256 | ea9942488aec394bf8130b3f0d289b72bfa633a20f2a22deb5c5b8055d5560e7 |