php matusri xhprof custompanel

17
XHProf custom panel (CakePHP DebugKit) Masaki YOSHIDA

Upload: masaki-yoshida

Post on 21-Jan-2015

1.823 views

Category:

Technology


1 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Php matusri xhprof custompanel

XHProf custom panel(CakePHP DebugKit)

Masaki YOSHIDA

Page 2: Php matusri xhprof custompanel

me

● Name: Masaki YOSHIDA● Age: 27● Twitter: @ReSTARTR● Blog: http://blog.restartr.com

Page 3: Php matusri xhprof custompanel

Frameworks

● Usually use:● Original Framework● based on ZendFramework

Page 4: Php matusri xhprof custompanel

XHProf

● Profiler● a function-level hierarchical profiler for PHP● has a simple HTML based navigational interface.● Create Callgraph●

● How to install● pecl install

Page 5: Php matusri xhprof custompanel
Page 6: Php matusri xhprof custompanel

CakePHP1.3 callgraph

Page 7: Php matusri xhprof custompanel

Symfony2 callgraph

Page 8: Php matusri xhprof custompanel

Lithium callgraph

Page 9: Php matusri xhprof custompanel

DebugKit

● CakePHP plugin● Debug toolbar

● history,request,session,timer,sql logs, log, variables...

● custom panel

Page 10: Php matusri xhprof custompanel

Custom panel

Page 11: Php matusri xhprof custompanel
Page 12: Php matusri xhprof custompanel

implement

Page 13: Php matusri xhprof custompanel

•cakephp/

• app/

• controllers/• helloworld_controller.php

• plugins/• debug_kit/• xhprof/

• controllers/• components/

• toolbar.php• xhprof.php

• views/• plugins/

• debug_kit/• elements/

• xhprof_panel.ctp

Page 14: Php matusri xhprof custompanel

Usage - controller

var $components = array(

'DebugKit.Toolbar' => array('panels' => array('xhprof')),

'Xhprof.Xhprof' => array('configs' => array(

'XHPROF_ROOT' => '/var/vhosts/xhprof',

'XHPROF_SOURCE_NAME' => "helloworld"

)),

);

Page 15: Php matusri xhprof custompanel

Usage – action method

function index() {

$this->Xhprof->start();

$this->set('msg','hello world!.');

$this->Xhprof->end();

}

Page 16: Php matusri xhprof custompanel

todo

● Refactoring● call graph panel

Page 17: Php matusri xhprof custompanel

Thank you.