We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Debug toolbar like symfony

Does exists solution for displaying debug information such as db query count, db query listing, page generation time, peak memory usage and etc. Something like symfony debug toolbar https://3.bp.blogspot.com/-qP9aQBIcsqo/T4iPhy6KCBI/AAAAAAAAB0w/CsFjx4UGKG0/s1600/Screen+Shot+2012-04-13+at+4.39.20+PM.png P.S. Is there a way to monitor what is going on with the script?

Hi Dmitry, No solutions in framework I think u can port some functions from phalconeye cms https://github.com/lantian/PhalconEye to u project and test perfomance or use xhprof, xdebug reports



16.2k

Hi, I just created one today. Its still pretty crude, but you can check out the post in the forum here: https://forum.phalcon.io/discussion/1532/introducing-phalcondebugwidget-pdw-

or the github project page: https://github.com/jymboche/phalcon-debug-widget

I created a Phalcon toolbar some months ago and I just updated It. It comes with support for Phalcon's DB, dispatching and view events and additionally adapters for:

  • Phalcon cache backends
  • PDO
  • Doctrine
  • Elasticsearch
  • PSR-3 logger

Check it out, here you also find a demo: https://prophiler.fabfuel.de/

And this is the GitHub repo: https://github.com/fabfuel/prophiler

Enjoy, Fabian