Time Warden is a lightweight PHP library that enables you to monitor the processing time of tasks and take actions on thresholds exceeding defined execution time limits. It’s probably best illustrated with an example from the readme:
timeWarden()->task(‘Checking articles’)->start();
foreach ($articles as $article) {
// Perform long process… 🕒
}
// Using traditional anonymous function
timeWarden()->stop(static function (Task $task): void {
$task->onExceedsMilliseconds(500, static function (Task $task): void {
// Do what you need, for example, send an email 🙂
Mail::to(‘foo@bar.com’)->queue(
new SlowArticleProcess($task)
);
});
});
// Or using an arrow function
timeWarden()->stop(static function (Task $task): void {
$task->onExceedsMilliseconds(500, fn (Task $task) => Log::error($task->name.’ has taken too long’));
});
This library has excellent documentation in the project’s readme, which in summary offers the following features:
Monitor processing time of critical tasks in development and debugging
Reactive actions when time is exceeded (milliseconds, seconds, minutes, and hours)
Execution time debugging output
Measure execution time of an individual task and groups of tasks
Framework-agnostic library you can use with Laravel, Symfony, standalone, etc.
PHP 8.2+
I like the output of tasks, which you can output directly or through a logging system:
echo timeWarden()->output();
/*
â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• TIMEWARDEN â•â•â•â•â•â•¤â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
║ GROUP │ TASK │ DURATION (MS) ║
â• â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•ªâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•ªâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•£
║ default (320.37 ms) │ Articles task │ 70.23 ║
║ │ Customers task │ 250.14 ║
â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• Total: 320.37 ms â•â•â•§â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
*/
// Send as a log
if (app()->environment(‘local’)) {
Log::debug(timeWarden()->output());
}
You can learn more about this package, get full installation instructions, and view the source code on GitHub.
The post Monitor Code Processing Time in PHP with Time Warden appeared first on Laravel News.
Join the Laravel Newsletter to get all the latest Laravel articles like this directly in your inbox.
Source: Read MoreÂ