Browse Source

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

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v21.0.0beta1
Joas Schilling 3 years ago
parent
commit
74f4dbe9de
No account linked to committer's email address
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      lib/private/Dashboard/Manager.php

+ 9
- 0
lib/private/Dashboard/Manager.php 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(),

Loading…
Cancel
Save