I read this but it doesn't fit my solution.
I need to find out memory and CPU time bottlenecks in my CakePHP 2 application.
With microtime and memory_get_usage in controller actions I found out some clues. I fixed some of with this. But it is so hard to diagnose every controller action one by one.
I need to log CPU and memory loads for each of my actions. I'm planning to put 2 global variables in my controller. And calculate them inside beforeFilter and afterFilter and log them for checking afterwards. Is this proper way or can you recommend another solution?
class AppController extends Controller {
var $requestStartTime = 0;
var $requestDifTime = 0;
var $memoryBefore = 0;
var $memoryAfter = 0;
function beforeFilter() {
$requestStartTime = microtime(true);
$memoryBefore =memory_get_usage(true);
}
function afterFilter() {
$requestDifTime = microtime(true) - $requestStartTime;
$memoryAfter = memory_get_usage(true);
$myFile = TMP.'logs'.DS.'mylog.txt';
$fh = fopen($myFile, 'a');
$string = "start time:" . $requestStartTime .
" dif time: " . $requestDifTime
" memory usage: " . $memoryBefore . " and " . $memoryAfter
."\n";
fwrite($fh,$string);
fclose($fh);
}
}