Merge pull request #9558 from annando/rendertime-limit
Added minimal execution time for rendertime addon
This commit is contained in:
commit
cc4bae6382
|
@ -165,10 +165,11 @@ class Profiler implements ContainerInterface
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the rendertime string
|
* Returns the rendertime string
|
||||||
|
* @param float $limit Minimal limit for displaying the execution duration
|
||||||
*
|
*
|
||||||
* @return string the rendertime
|
* @return string the rendertime
|
||||||
*/
|
*/
|
||||||
public function getRendertimeString()
|
public function getRendertimeString(float $limit = 0)
|
||||||
{
|
{
|
||||||
$output = '';
|
$output = '';
|
||||||
|
|
||||||
|
@ -180,7 +181,7 @@ class Profiler implements ContainerInterface
|
||||||
$output .= "\nDatabase Read:\n";
|
$output .= "\nDatabase Read:\n";
|
||||||
foreach ($this->callstack["database"] as $func => $time) {
|
foreach ($this->callstack["database"] as $func => $time) {
|
||||||
$time = round($time, 3);
|
$time = round($time, 3);
|
||||||
if ($time > 0) {
|
if ($time > $limit) {
|
||||||
$output .= $func . ": " . $time . "\n";
|
$output .= $func . ": " . $time . "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -189,7 +190,7 @@ class Profiler implements ContainerInterface
|
||||||
$output .= "\nDatabase Write:\n";
|
$output .= "\nDatabase Write:\n";
|
||||||
foreach ($this->callstack["database_write"] as $func => $time) {
|
foreach ($this->callstack["database_write"] as $func => $time) {
|
||||||
$time = round($time, 3);
|
$time = round($time, 3);
|
||||||
if ($time > 0) {
|
if ($time > $limit) {
|
||||||
$output .= $func . ": " . $time . "\n";
|
$output .= $func . ": " . $time . "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -198,7 +199,7 @@ class Profiler implements ContainerInterface
|
||||||
$output .= "\nCache Read:\n";
|
$output .= "\nCache Read:\n";
|
||||||
foreach ($this->callstack["cache"] as $func => $time) {
|
foreach ($this->callstack["cache"] as $func => $time) {
|
||||||
$time = round($time, 3);
|
$time = round($time, 3);
|
||||||
if ($time > 0) {
|
if ($time > $limit) {
|
||||||
$output .= $func . ": " . $time . "\n";
|
$output .= $func . ": " . $time . "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -207,7 +208,7 @@ class Profiler implements ContainerInterface
|
||||||
$output .= "\nCache Write:\n";
|
$output .= "\nCache Write:\n";
|
||||||
foreach ($this->callstack["cache_write"] as $func => $time) {
|
foreach ($this->callstack["cache_write"] as $func => $time) {
|
||||||
$time = round($time, 3);
|
$time = round($time, 3);
|
||||||
if ($time > 0) {
|
if ($time > $limit) {
|
||||||
$output .= $func . ": " . $time . "\n";
|
$output .= $func . ": " . $time . "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -216,7 +217,7 @@ class Profiler implements ContainerInterface
|
||||||
$output .= "\nNetwork:\n";
|
$output .= "\nNetwork:\n";
|
||||||
foreach ($this->callstack["network"] as $func => $time) {
|
foreach ($this->callstack["network"] as $func => $time) {
|
||||||
$time = round($time, 3);
|
$time = round($time, 3);
|
||||||
if ($time > 0) {
|
if ($time > $limit) {
|
||||||
$output .= $func . ": " . $time . "\n";
|
$output .= $func . ": " . $time . "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue