Aggregate PHP XDebug data with KCacheGrind

3.6k Views Asked by At

Is there any way to aggregate profile data previously taken by PHP XDebug?

I have managed PHP XDebug to put the data related to one request to single file. When I open that file in kcachegrind, it displays all the requests aggregated in that file. However, each request has its own stack trace (I understand, it may change). Is there any way to see profile data aggregated from all the requests? I don't care if it's not 100 % accurate or if some calls are missing, I just need the brief overview over all daily operations.

Disclaimer: kcachegrind is not requirement, I just found it the best tool so far.

2

There are 2 best solutions below

0
On BEST ANSWER

Combine all files into one:

cat cachegrind.out.* > cachegrind.combined

Open the cachegrind.combined and select "Parts" tab on bottom right of the window. You will see multiple parts of profile listed there. Select them all (CTRL+a or use mouse) and you will see summed data of all these profile files.

2
On

The report generated is TEXT and can be parsed so it should not be to complicated to build a parser that generates reports. I use WinCacheGrind for windows and find it very good as besides a detailed tree it also shows a general combined time/function and how many calls it has.