Learn how the trace generation works and how to read flame graphs.
pytest-codspeed>=2.0.0
app
function.app
calls the init
, handleRequest
and terminate
functions.handleRequest
calls both authenticateUser
and processData
.processData
calls foo
which in turn calls bar
.foo
function is called twice and the bar
function is called 4
times, but the time spent is aggregated into a single block for each function.
main
being
much bigger than before:
Example of flame graphs on a pull request page