vote up 2 vote down star
2

I am working on optimizing my site, and I have had the MySQL slow queries log on for a few days now, but after going through >260M queries, it only logged 6 slow queries, and those were special ones executed by me on phpMyAdmin. I am wondering if there is something to log slow PHP page execution time so that I can find certain pages that are hogging resources, rather than specific queries.

flag

It could be that phpMyAdmin queries are low priority, that would cause them to show up as 'slow' – karim79 Jun 4 at 7:23
I was just mentioning that to say that none were queries that needed to be optimized on the site. – James Simpson Jun 4 at 7:29
2  
If you want more precise measurements than in the accepted answer, to find where in a document your bottleneck is - you can check out Benchmark from PEAR. It allows you to set out markers in your code to find the bottle necks. – Björn Jun 4 at 7:47
Thanks, that could be quite useful as well. – James Simpson Jun 4 at 7:55

3 Answers

vote up 1 vote down check

First, there is xdebug, which has a profiler, but I wouldn't use that on a production machine, since it injects code and brings the speed to a crawl. Very good for testing environments, though.

If you want to measure speeds on a productive environment, I would just to the measuring manually. microtime() is the function for these things in PHP. Assuming you have a header.php and a footer.php which get called by all php scripts:

# In your header.php (or tpl)
$GLOBALS['_execution_start'] = microtime(true);

# In your footer.php (or tpl)
file_put_contents(
    '/tmp/my_profiling_results.txt',
    microtime(true) - $GLOBALS['_execution_start'] . ':' .
        print_r($_SERVER, true) . "\n",
    FILE_APPEND
);
link|flag
Thanks, your second suggestion is a good idea. I was hoping there would be some way to just automate this, but this works just as good without much effort. – James Simpson Jun 4 at 7:34
Oh, one thing to add to this. FILE_APPEND should be added as a flag, so you don't just get the most recent access in the log. – James Simpson Jun 4 at 7:55
Thx, I always forget that :) – soulmerge Jun 4 at 7:56
vote up 1 vote down

You could wrap your scripts in a simple timer, like this:

/*in your header or at the top of the page*/
$time_start = microtime(true); 

/* your script goes here */

/*in your footer, or at the bottom of the page*/
$time_end = microtime(true);
$time = $time_end - $time_start;   
echo "It took $time seconds\n";

Note that will add two function executions and a tiny bit of math as overhead.

link|flag
vote up 0 vote down

Could you not register a shutdown function that calls an end to the timer? http://us3.php.net/register%5Fshutdown%5Ffunction That way you only need to start the timer wherever you think there might be a problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.