CodeIgniter Forums
Monitor CodeIgniter framework performance - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Best Practices (https://forum.codeigniter.com/forumdisplay.php?fid=12)
+--- Thread: Monitor CodeIgniter framework performance (/showthread.php?tid=243)



Monitor CodeIgniter framework performance - terry lee - 11-13-2014

Hi Team,
Currently i have a php project which base on codeigniter framework, i wanna to monitor the porject try to get some useful information like CPU, Memory..by Real-time, any idea for it?

Thanks


RE: Monitor CodeIgniter framework performance - terry lee - 11-13-2014

how to know the codeigniter performance.


RE: Monitor CodeIgniter framework performance - GeorgeD - 11-14-2014

You can try http://newrelic.com/php/codeigniter (they have a free account you can use) .
I use newrelic for an app written in node.js, and for me it's a good monitoring tool.


RE: Monitor CodeIgniter framework performance - Chroma - 11-14-2014

You can also code in to the use Profiler system in the framework.

http://www.codeigniter.com/user_guide/general/profiling.html

along with the Benchmark class

http://www.codeigniter.com/user_guide/libraries/benchmark.html

(current version 2.2.0)

I hope this helps.