I’m looking for a feature that will allow me to see a current status of all php scripts running and showing me how much memory/io/cpu they are consuming at this point.
I have a wordpress website that has a lot of plugins installed in it, and I’m currently having performance issues that I suspect are related to one of the many plugins.
I’m looking for a quick way to check which script/plugin is consuming the most IO/memory/cpu.
You can install the Xdebug extension and use its profiling functions. The profile will show you how much time is spent in each function so you’ll probably be able to find the WP plugin that consumes so much time.