MikeBerryFR / webgrind

Xdebug Profiling Web Frontend in PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Webgrind

Webgrind is a Xdebug profiling web frontend in PHP. It implements a subset of the features of kcachegrind and installs in seconds and works on all platforms. For quick'n'dirty optimizations it does the job. Here's a screenshot showing the output from profiling:

Features

  • Super simple, cross platform installation - obviously :)
  • Track time spent in functions by self cost or inclusive cost. Inclusive cost is time inside function + calls to other functions.
  • See if time is spent in internal or user functions.
  • See where any function was called from and which functions it calls.
  • Generate a call graph using gprof2dot.py

Suggestions for improvements and new features are more than welcome - this is just a start.

Installation

  1. Download webgrind
  2. Unzip package to favourite path accessible by webserver.
  3. Load webgrind in browser and start profiling

Alternatively, on PHP 5.4+ run the application using the PHP built-in server with the command composer serve or php -S 0.0.0.0:8080 index.php if you are not using Composer.

For faster preprocessing under linux, give write access to the bin subdirectory or execute make in the unzipped folder (requires GCC).

See the Installation Wiki page for more

Credits

Webgrind is written by Joakim Nygård and Jacob Oettinger. It would not have been possible without the great tool that Xdebug is thanks to Derick Rethans.

Current maintainer is Micah Ng.

About

Xdebug Profiling Web Frontend in PHP

License:Other


Languages

Language:PHP 54.0%Language:HTML 25.5%Language:C++ 15.6%Language:CSS 3.8%Language:Shell 0.6%Language:Makefile 0.4%