Before someone tells me to go RTM or JGI, believe me I have.
I have a site.
I simply want to see a list of functions that are executed on page load, with the time it takes for each function to run to identify the bottle necks.
I've successfully installed Xdebug and have tried webgrind and codebug (mac app). But either I am looking at the wrong thing or they are not suitable. What I want is really simple, yet I can't seem to figure it out.
In an idea road I want to:
- Load webpage
Alt tab back to some profiling app and see
function foo() | taken 300 ms function bar() | taken 1200 ms function fid() | taken 1200 ms function sticks() | taken 31200 ms function lde() | taken 1200 ms
Then I can go to sticks()
and see what the hell it's doing and making my site slow.
Thanks in advanced.