|
|
|
@ -9,8 +9,8 @@ namespace yii\debug\panels;
|
|
|
|
|
|
|
|
|
|
use Yii; |
|
|
|
|
use yii\debug\Panel; |
|
|
|
|
use yii\helpers\Html; |
|
|
|
|
use yii\log\Logger; |
|
|
|
|
use yii\debug\models\search\Profile; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Debugger panel that collects and displays performance profiling info. |
|
|
|
@ -20,6 +20,17 @@ use yii\log\Logger;
|
|
|
|
|
*/ |
|
|
|
|
class ProfilingPanel extends Panel |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @var array profile messages timings |
|
|
|
|
*/ |
|
|
|
|
private $_timings; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @var array current request profile timings |
|
|
|
|
*/ |
|
|
|
|
private $_models; |
|
|
|
|
|
|
|
|
|
public function getName() |
|
|
|
|
{ |
|
|
|
|
return 'Profiling'; |
|
|
|
@ -27,25 +38,41 @@ class ProfilingPanel extends Panel
|
|
|
|
|
|
|
|
|
|
public function getSummary() |
|
|
|
|
{ |
|
|
|
|
$memory = sprintf('%.1f MB', $this->data['memory'] / 1048576); |
|
|
|
|
$time = number_format($this->data['time'] * 1000) . ' ms'; |
|
|
|
|
$url = $this->getUrl(); |
|
|
|
|
|
|
|
|
|
return <<<EOD |
|
|
|
|
<div class="yii-debug-toolbar-block"> |
|
|
|
|
<a href="$url" title="Total request processing time was $time">Time <span class="label">$time</span></a> |
|
|
|
|
</div> |
|
|
|
|
<div class="yii-debug-toolbar-block"> |
|
|
|
|
<a href="$url" title="Peak memory consumption">Memory <span class="label">$memory</span></a> |
|
|
|
|
</div> |
|
|
|
|
EOD; |
|
|
|
|
return Yii::$app->view->render('panels/profile/summary', [ |
|
|
|
|
'memory' => sprintf('%.1f MB', $this->data['memory'] / 1048576), |
|
|
|
|
'time' => number_format($this->data['time'] * 1000) . ' ms', |
|
|
|
|
'panel' => $this |
|
|
|
|
]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function getDetail() |
|
|
|
|
{ |
|
|
|
|
$searchModel = new Profile(); |
|
|
|
|
$dataProvider = $searchModel->search(Yii::$app->request->get(), $this->getModels()); |
|
|
|
|
|
|
|
|
|
return Yii::$app->view->render('panels/profile/detail', [ |
|
|
|
|
'panel' => $this, |
|
|
|
|
'dataProvider' => $dataProvider, |
|
|
|
|
'searchModel' => $searchModel, |
|
|
|
|
'memory' => sprintf('%.1f MB', $this->data['memory'] / 1048576), |
|
|
|
|
'time' => number_format($this->data['time'] * 1000) . ' ms', |
|
|
|
|
]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Calculates given request profile messages timings. |
|
|
|
|
* @return array timings |
|
|
|
|
*/ |
|
|
|
|
protected function calculateTimings() |
|
|
|
|
{ |
|
|
|
|
if ($this->_timings !== null) { |
|
|
|
|
return $this->_timings; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$messages = $this->data['messages']; |
|
|
|
|
$timings = []; |
|
|
|
|
$stack = []; |
|
|
|
|
|
|
|
|
|
foreach ($messages as $i => $log) { |
|
|
|
|
list($token, $level, $category, $timestamp, $traces) = $log; |
|
|
|
|
if ($level == Logger::LEVEL_PROFILE_BEGIN) { |
|
|
|
@ -62,36 +89,7 @@ EOD;
|
|
|
|
|
$timings[] = [count($stack), $last[0], $last[2], $now - $last[3], $last[4]]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$rows = []; |
|
|
|
|
foreach ($timings as $timing) { |
|
|
|
|
$time = sprintf('%.1f ms', $timing[3] * 1000); |
|
|
|
|
$procedure = str_repeat('<span class="indent">→</span>', $timing[0]) . Html::encode($timing[1]); |
|
|
|
|
$category = Html::encode($timing[2]); |
|
|
|
|
$rows[] = "<tr><td style=\"width: 80px;\">$time</td><td style=\"width: 220px;\">$category</td><td>$procedure</td>"; |
|
|
|
|
} |
|
|
|
|
$rows = implode("\n", $rows); |
|
|
|
|
|
|
|
|
|
$memory = sprintf('%.1f MB', $this->data['memory'] / 1048576); |
|
|
|
|
$time = number_format($this->data['time'] * 1000) . ' ms'; |
|
|
|
|
|
|
|
|
|
return <<<EOD |
|
|
|
|
<h2>Performance Profiling</h2> |
|
|
|
|
|
|
|
|
|
<p>Total processing time: <b>$time</b>; Peak memory: <b>$memory</b>.</p> |
|
|
|
|
|
|
|
|
|
<table class="table table-condensed table-bordered table-striped table-hover" style="table-layout: fixed;"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th style="width: 80px;">Time</th> |
|
|
|
|
<th style="width: 220px;">Category</th> |
|
|
|
|
<th>Procedure</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
$rows |
|
|
|
|
</tbody> |
|
|
|
|
</table> |
|
|
|
|
EOD; |
|
|
|
|
return $this->_timings = $timings; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function save() |
|
|
|
@ -104,4 +102,27 @@ EOD;
|
|
|
|
|
'messages' => $messages, |
|
|
|
|
]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Returns array of profiling models that can be used in data provider. |
|
|
|
|
* @return array models |
|
|
|
|
*/ |
|
|
|
|
protected function getModels() |
|
|
|
|
{ |
|
|
|
|
if ($this->_models === null) { |
|
|
|
|
$this->_models = []; |
|
|
|
|
$timings = $this->calculateTimings(); |
|
|
|
|
|
|
|
|
|
foreach($timings as $profileTiming) { |
|
|
|
|
$this->_models[] = [ |
|
|
|
|
'duration' => $profileTiming[3] * 1000, #in milliseconds |
|
|
|
|
'category' => $profileTiming[2], |
|
|
|
|
'info' => $profileTiming[1], |
|
|
|
|
'level' => $profileTiming[0], |
|
|
|
|
]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return $this->_models; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|