X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=rendertime%2Frendertime.php;h=1a2a962f497d32e6364ef89a9b35838f4e2b06d7;hb=27b60e003f92dd9f3aebbeddb34ebb905488ca82;hp=22afa03980d04d28cdb6aaefafec0b3d75c9a769;hpb=e6b170da7de53df162fafdabbc1b00a31e709a3b;p=friendica-addons.git diff --git a/rendertime/rendertime.php b/rendertime/rendertime.php old mode 100755 new mode 100644 index 22afa039..1a2a962f --- a/rendertime/rendertime.php +++ b/rendertime/rendertime.php @@ -9,6 +9,8 @@ * */ +use Friendica\Core\Config; + function rendertime_install() { register_hook('page_end', 'addon/rendertime/rendertime.php', 'rendertime_page_end'); } @@ -26,29 +28,39 @@ function rendertime_page_end(&$a, &$o) { $duration = microtime(true)-$a->performance["start"]; - if (is_site_admin() AND ($_GET["mode"] != "minimal") AND !$a->is_mobile AND !$a->is_tablet) { - $o = $o.'
'.sprintf(t("Performance: Database: %s, Network: %s, Rendering: %s, Parser: %s, I/O: %s, Other: %s, Total: %s"), - round($a->performance["database"], 3), - round($a->performance["network"], 3), - round($a->performance["rendering"], 3), - 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), - round($duration, 3) + $ignored_modules = ["fbrowser"]; + $ignored = in_array($a->module, $ignored_modules); + + if (is_site_admin() && ($_GET["mode"] != "minimal") && !$a->is_mobile && !$a->is_tablet && !$ignored) { + $o = $o.'
'.sprintf(t("Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s"), + round($a->performance["database"] - $a->performance["database_write"], 3), + round($a->performance["database_write"], 3), + round($a->performance["network"], 2), + round($a->performance["rendering"], 2), + round($a->performance["parser"], 2), + round($a->performance["file"], 2), + round($duration - $a->performance["database"] + - $a->performance["network"] - $a->performance["rendering"] + - $a->performance["parser"] - $a->performance["file"], 2), + round($duration, 2) //round($a->performance["markstart"], 3) //round($a->performance["plugin"], 3) )."
"; - if (get_config("rendertime", "callstack")) { + if (Config::get("rendertime", "callstack")) { $o .= "
";
-			$o .= "\nDatabase:\n";
+			$o .= "\nDatabase Read:\n";
 			foreach ($a->callstack["database"] AS $func => $time) {
 				$time = round($time, 3);
 				if ($time > 0)
 					$o .= $func.": ".$time."\n";
 			}
+			$o .= "\nDatabase Write:\n";
+			foreach ($a->callstack["database_write"] AS $func => $time) {
+				$time = round($time, 3);
+				if ($time > 0)
+					$o .= $func.": ".$time."\n";
+			}
 
 			$o .= "\nNetwork:\n";
 			foreach ($a->callstack["network"] AS $func => $time) {