* @since 2.0 */ class DebugPanel extends Panel { public $db = 'elasticsearch'; public function init() { $this->actions['elasticsearch-query'] = [ 'class' => 'yii\\elasticsearch\\DebugAction', 'panel' => $this, 'db' => $this->db, ]; } /** * @inheritdoc */ public function getName() { return 'Elasticsearch'; } /** * @inheritdoc */ public function getSummary() { $timings = $this->calculateTimings(); $queryCount = count($timings); $queryTime = 0; foreach ($timings as $timing) { $queryTime += $timing[3]; } $queryTime = number_format($queryTime * 1000) . ' ms'; $url = $this->getUrl(); $output = << ES $queryCount $queryTime EOD; return $queryCount > 0 ? $output : ''; } /** * @inheritdoc */ public function getDetail() { $timings = $this->calculateTimings(); ArrayHelper::multisort($timings, 3, SORT_DESC); $rows = []; $i = 0; foreach ($timings as $logId => $timing) { $duration = sprintf('%.1f ms', $timing[3] * 1000); $message = $timing[1]; $traces = $timing[4]; if (($pos = mb_strpos($message, "#")) !== false) { $url = mb_substr($message, 0, $pos); $body = mb_substr($message, $pos + 1); } else { $url = $message; $body = null; } $traceString = ''; if (!empty($traces)) { $traceString .= Html::ul($traces, [ 'class' => 'trace', 'item' => function ($trace) { return "
  • {$trace['file']}({$trace['line']})
  • "; }, ]); } $ajaxUrl = Url::to(['elasticsearch-query', 'logId' => $logId, 'tag' => $this->tag]); \Yii::$app->view->registerJs(<<Error: ' + errorThrown + ' - ' + textStatus + '
    ' + jqXHR.responseText); }, dataType: "json" }); return false; }); JS , View::POS_READY); $runLink = Html::a('run query', '#', ['id' => "elastic-link-$i"]) . '
    '; $rows[] = << $duration
    $url

    $body

    $traceString
    $runLink HTML; $i++; } $rows = implode("\n", $rows); return <<Elasticsearch Queries $rows
    Time Url / Query Run Query on node
    HTML; } private $_timings; public 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) = $log; $log[5] = $i; if ($level == Logger::LEVEL_PROFILE_BEGIN) { $stack[] = $log; } elseif ($level == Logger::LEVEL_PROFILE_END) { if (($last = array_pop($stack)) !== null && $last[0] === $token) { $timings[$last[5]] = [count($stack), $token, $last[3], $timestamp - $last[3], $last[4]]; } } } $now = microtime(true); while (($last = array_pop($stack)) !== null) { $delta = $now - $last[3]; $timings[$last[5]] = [count($stack), $last[0], $last[2], $delta, $last[4]]; } ksort($timings); return $this->_timings = $timings; } /** * @inheritdoc */ public function save() { $target = $this->module->logTarget; $messages = $target->filterMessages($target->messages, Logger::LEVEL_PROFILE, ['yii\elasticsearch\Connection::httpRequest']); return ['messages' => $messages]; } }