문제

Are there any tools that can analyze a folder full of xdebug dumps in aggregate?

When we enabled Xdebug profiling on our production server for short periods of time, we always end up with hundreds of files, that takes a lot of time to analyze individually in WinCacheGrind or KCacheGrind. I am looking for a tool that can be used in aggregate, to tell me which functions take up the most time in all of the files combined.

도움이 되었습니까?

해결책

use config directive xdebug.profiler_append instead

When this setting is set to 1, profiler files will not be overwritten when a new request would map to the same file (depending on the xdebug.profiler_output_name setting. Instead the file will be appended to with the new profile.

(http://xdebug.org/docs/profiler)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top