https://github.com/exteon/web3tracer
PHP profiler module with recursion handling
https://github.com/exteon/web3tracer
kcachegrind php php-profiler php7 profiler recursion-handling
Last synced: 4 months ago
JSON representation
PHP profiler module with recursion handling
- Host: GitHub
- URL: https://github.com/exteon/web3tracer
- Owner: exteon
- License: apache-2.0
- Created: 2014-05-25T12:44:46.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-11-10T21:23:44.000Z (over 6 years ago)
- Last Synced: 2023-12-16T18:20:30.420Z (over 1 year ago)
- Topics: kcachegrind, php, php-profiler, php7, profiler, recursion-handling
- Language: PHP
- Homepage: http://www.exteon.ro/en/products/php-tools/web3tracer
- Size: 921 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
# web3tracer PHP profiler
## PHP extension to profile PHP scriptsweb3tracer is a PHP profiler / tracer derived from XHProf; it is a PHP profiler module written in C allowing you to profile php script performance with minimum overhead.
It allows you to profile PHP scripts to analyze PHP scripts' performance, from finding bottlenecks to fine tuning execution times. It is an invaluable tool in assessing your PHP code's performance. Using the KCacheGrind graph rendition, you can visualize the execution flow of your scripts. This also gives you a structural overview of code flow, allowing you to easily identify the functional structure of your code.Check out the project homepage at: http://www.exteon.ro/en/products/php-tools/web3tracer
And the full documentation at: http://www.exteon.ro/en/products/php-tools/web3tracer
This PHP profiler is a new alternative, outperforming similar tools in:
* Minimal overhead
* KCachegrind output
* XHProf output
* Correctly handles recursive calls, not by expansion (XHProf) but by decoupling
* Full call tree traces in XDebug XT formatIt is not difficult now to get an execution graph like the one below:

This means that when you profile php script it will be will be more accurate, and easier to follow visually. Please browse the manual for a better look at what it does.
This is meant to supersede the xt2callgrind tool, which relied on the XDebug profiler.