I created my own profiler for my python plugin, it works by procedurally injecting a profiling wrapper for every single functions/class functions of my modules, it is very rough, and surprisingly difficult example: https://blender.stackexchange.com/questions/273803/profiling-a-blender-plugin/273804#273804.
It allows me to see which functions are executed in my python plugin in real-time. see below, when I click on a button, I'll see all related executions.
How can I achieve the same effect with cProfile or another built-in module perhaps? the goal is to show all functions execution (filtering X module) in the console in real-time , w/o manually adding decorators to many functions
