]> git.mxchange.org Git - friendica-addons.git/commitdiff
Adding more parameters to rendertime
authorMichael Vogel <icarus@dabo.de>
Sat, 26 Jan 2013 17:36:10 +0000 (18:36 +0100)
committerMichael Vogel <icarus@dabo.de>
Sat, 26 Jan 2013 17:36:10 +0000 (18:36 +0100)
rendertime/rendertime.php

index 0792ce05c0d56ac180ac0f89f426303e13d6b275..e2c7352c39d3debd0b63a25c36e9675fbfc28319 100755 (executable)
@@ -24,11 +24,15 @@ function rendertime_init_1(&$a) {
 
 function rendertime_page_end(&$a, &$o) {
 
-       $duration = round(microtime(true)-$a->performance["start"], 3);
+       $duration = microtime(true)-$a->performance["start"];
 
-       $o = $o.'<div class="renderinfo">'.sprintf(t("Rendertime: Database: %s, Network: %s, Rendering: %s, Total: %s"),
+       $o = $o.'<div class="renderinfo">'.sprintf(t("Performance: Database: %s, Network: %s, Rendering: %s, Parser: %s, I/O: %s, Other: %s"),
                                                round($a->performance["database"], 3),
                                                round($a->performance["network"], 3),
                                                round($a->performance["rendering"], 3),
-                                               $duration)."</div>";
+                                               round($a->performance["parser"], 3),
+                                               round($a->performance["file"], 3),
+                                               round($duration - $a->performance["database"] - $a->performance["network"]
+                                                        - $a->performance["rendering"] - $a->performance["parser"]
+                                                        - $a->performance["file"], 3))."</div>";
 }