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:
Joas Schilling 2020-09-23 12:14:01 +02:00 committed by backportbot[bot]
parent d247f198a9
commit 87f8e1e366
1 changed files with 9 additions and 0 deletions

View File

@ -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(),