Thread-aware profiler
Project description
A multi-thread aware profiler package, with an API similar to that of the standard cProfile module. Profiling data generated by mtprof is in the same format as that generated by cProfile and can therefore be analyzed using the same tools (such as pstats, snakeviz, etc.).
Compatibility
Python 3 is required, and only POSIX systems (Linux, etc.) are currently supported.
Install
This is a pure Python package, so pip install mtprof should generally work everywhere.
Command-line interface
python -m mtprof provides an interface similar to python -m cProfile and allows you to profile scripts, modules or entire applications.
Python API
The mtprof.Profile class has an API similar to cProfile.Profile.
Limitations
Due to the way Python profiling works, mtprof is only able to exploit profiling stats from threads whose lifetime is a subset of the profiler’s lifetime. A thread started before profiling was started, or ended after profiling was stopped, cannot have its statistics collected.
Due to this limitation, it is probably easier to use the command-line interface, which is similar to that of cProfile: just run python -m mtprof --help to get a view of the available options.
Only threads created using the standard threading.Thread interface are recognized. For most use cases this should not be an issue.
Status
This package is experimental.
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
Hashes for mtprof-0.0.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b677ae7b54a79711016702818b17df064ca9aa494bd74bac65121aa581c6a24 |
|
MD5 | af4ec055bb76e96330edf5a0829de278 |
|
BLAKE2b-256 | 358513e1288cca0897214010576bedd4813e551a8dfc97a76b05948c54593764 |