Lately I have gotten myself into a predicament. My system started consuming too much CPU and it turns out that along with a few SQL queries (that got logged in MySQL slow query log), there is also a number of PHP scripts that take too long to execute.
Question is: is there a way to determine the execution time of let's say 2000+ PHP scripts (how long it took to execute) without having to insert a snippet of code inside each and every one of them?
I was reading up on profiling but it does not seem the kind of thing I need. Thanks.