Log an error if a dashboard widget loads longer than 1 second

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/23015/head
Joas Schilling 6 years ago
parent 7d06027922
commit 74f4dbe9de
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
  1. 9
      lib/private/Dashboard/Manager.php

@ -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…
Cancel
Save