Rendertime: Additional fields for the profiler #1055

Merged
annando merged 3 commits from profiler into 2020.12-rc 2020-12-10 03:04:28 +01:00
Showing only changes of commit ed672a36f5 - Show all commits

View file

@ -50,9 +50,10 @@ function rendertime_page_end(Friendica\App $a, &$o)
$total = microtime(true) - $profiler->get('start');
$rest = $total - ($profiler->get('ready') - $profiler->get('start')) - $profiler->get('init') - $profiler->get('content');
$o = $o . '<div class="renderinfo">' . DI::l10n()->t("Boot: %s, Class-Init: %s, Init: %s, Content: %s, Other: %s, Total: %s",
round($profiler->get('ready') - $profiler->get('start'), 3),
$o = $o . '<div class="renderinfo">' . DI::l10n()->t("Class-Create: %s, Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s",
round($profiler->get('classcreate') - $profiler->get('start'), 3),
round($profiler->get('classinit') - $profiler->get('start'), 3),
round($profiler->get('ready') - $profiler->get('classinit'), 3),
round($profiler->get('init'), 3),
round($profiler->get('content'), 3),
round($rest, 3),