Easy profiling in chrome trace format
Project description
keke
This project is an extremely simple trace-event writer for Python.
You can read the traces in Perfetto or chrome's about:tracing
. This only
writes the consensus dialect that works in both, and is tiny enough to just
vendor on the off-chance that you want tracing in the future.
If your needs are more like a line profiler, you might want either pytracing (slightly abandoned, the git version does work in py3) or viztracer (unsuitable for vendoring in other projects due to size, but actively maintained).
I drew inspiration from both in writing this.
Simple Example
from __future__ import annotations # for IO[str]
from typing import IO, Optional
import time
import click
@click.command()
@click.option("--trace", type=click.File(mode="w"), help="Trace output filename")
@click.option("--foo", help="This value gets logged")
def main(trace: Optional[IO[str]], foo: Optional[str]) -> None:
with keke.TraceOutput(file=trace):
with kev("main", __name__, foo=foo):
sub()
def sub():
with kev("sub1", __name__):
time.sleep(1)
with kev("sub2", __name__):
time.sleep(2)
Overhead
Very close to zero when not enabled.
The easiest way to not-enable is call TraceOutput(file=None)
which will do nothing.
Processes, or "how to get to distributed tracing"
This approach avoids all magic.
If you're calling another (trace-aware) program, then the simplest thing to do is come up with a unique name and pass that to the child in argv, then attempt to merge that yourself once it's done.
If you're doing something like fork/spawn to continue python work, then the parent can control basic information (like the tmpdir to write to) and the child can open a unique file with its pid.
If you're doing something more distributed, you might come up with a guid and pass that to the child instead, for the child to tag it for later log uploading.
What's with the name
I was trying to come up with a short, memorable name and some of the rendered trace points were very pointy, which reminded me of the "bouba/kiki effect." The name "kiki" was taken but "keke" was not.
License
keke is copyright Tim Hatch, and licensed under
the MIT license. I am providing code in this repository to you under an open
source license. This is my personal repository; the license you receive to
my code is from me and not from my employer. See the LICENSE
file for details.
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 keke-0.1.2.tar.gz
.
File metadata
- Download URL: keke-0.1.2.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d57828f099090690075dfdae171e44e43ba3fe68a62212a66a5ab7f48a7cd69 |
|
MD5 | afb7746203ca10450c4978320c3dba87 |
|
BLAKE2b-256 | 19acf1ebaa7f2a5988aca1e40c148fe020c2dbe0cf1e2870ce21afaff24cb45e |
Provenance
File details
Details for the file keke-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: keke-0.1.2-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d516f55ed795ea2941bda1075bd84c915a738159ed456a026960456ebf18ffbf |
|
MD5 | 7ff7681fa5ce136eb147580b74e6b650 |
|
BLAKE2b-256 | 245f708d2c9b5cfa5ca4e322cf8c4580809cf19a96cc6653ffda1dceca67f608 |