The Profiler class will display test results such as load times, queries, etc.
Enabling Profiler in Codeigniter
$this->output->enable_profiler(TRUE);
Watch the page footer when you see full information when you start the application.
Disable profiler
$this->output->enable_profiler(FALSE);
source share