Log an error if a dashboard widget loads longer than 1 second
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
d247f198a9
commit
87f8e1e366
|
@ -95,7 +95,16 @@ class Manager implements IManager {
|
|||
}
|
||||
|
||||
try {
|
||||
$startTime = microtime(true);
|
||||
$widget->load();
|
||||
$endTime = microtime(true);
|
||||
$duration = $endTime - $startTime;
|
||||
if ($duration > 1) {
|
||||
\OC::$server->getLogger()->error('Dashboard widget {widget} took {duration} seconds to load.', [
|
||||
'widget' => $widget->getId(),
|
||||
'duration' => round($duration, 2),
|
||||
]);
|
||||
}
|
||||
} catch (Throwable $e) {
|
||||
\OC::$server->getLogger()->logException($e, [
|
||||
'message' => 'Error during dashboard widget loading: ' . $e->getMessage(),
|
||||
|
|
Loading…
Reference in New Issue