A simple statistical profiler which outputs in format suitable for FlameGraph.
INSTALL:
Simply run:
pip install git+https://github.com/evanhempel/python-flamegraph.git
USAGE:
Run your script under the profiler:
python -m flamegraph -o perf.log myscript.py --your-script args here
Run Brendan Gregg’s FlameGraph tool against the output:
flamegraph.pl --title "MyScript CPU" perf.log > perf.svg
Enjoy the output:
Filtering
Sometimes you may want to exclude a method (for example in a server the method that waits for a new request) or you may want to profile only a subset of your code (a particular method and its children which are performance critical).
Filtering can be done by passing a python regular expression to the -f or --filter command line option which will restrict output to only those lines which match. Filtering is done against the entire line so you can filter by function name, thread name, both, or even by more complex filters such as function ABC calls DEF (ABC.*DEF).
Alternatively since the output is stackframes each on a line by itself, this can simply be done with a simple grep filter.:
Exclude: grep -v waiting_method perf.log > removed_waiting.log Include: grep function_name perf.log > filtered.log
Then run the flamegraph.pl script against the filtered file.
Full profile output of yCanta webapp PDF export. Most time is spent in wait state and graph is not very helpful.
Filtered profile output of yCanta webapp PDF export. Filtering was on the pdf format function so time spent in wait state has been excluded and the graph is now helpful.
Release files for flamegraph 0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| flamegraph-0.1.tar.gz | 4.0 kB | Details |
Release files / flamegraph-0.1.tar.gz
| Download URL | flamegraph-0.1.tar.gz |
|---|---|
| Size | 4.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2c45efc8eef0de0e2d088a82c033f6a6aa79d8f9a551de83e555be2a9dbb2452
|
|
BLAKE2b-256 checksum How to use checksums |
4ac0349ab6f90f2f9b325da25b33e7a7a050fa8c65eb4f7554190bd4d830efa3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |