Alex
Alex

Reputation: 44395

How can I analyze xdebug function-tracing output

I am creating function-tracing xt files with xdebug which are are created with php commands like

xdebug_start_trace('outfile')
... code ...
xdebug_stop_trace();

How can I analyze/visualize the created data?

Upvotes: 1

Views: 2446

Answers (1)

elixenide
elixenide

Reputation: 44851

See the documentation and the answers to this question.

You may be able to use https://github.com/corretge/xdebug-trace-gui. There are also other tools available, such as ValaXdebugTools and XDebugUtils.

And, of course, you can always roll your own solution.

Upvotes: 1

Related Questions