Is there a way to measure server resource (CPU) usage by WP plugins?

You need a so called profiler to measure which part of your application does make use of CPU and Memory Resources. XDebug is such a profiler for example. Using it will show you exactly which part of your application uses how much of CPU and memory.

Leave a Comment