this package use for measuring execution time of your operation, it's event based
alirezavalipour/laravel-time-measurement is a Laravel package for this package use for measuring execution time of your operation, it's event based.
It currently has 4 GitHub stars and 1 downloads on Packagist (latest version v0.1).
Install it with composer require alirezavalipour/laravel-time-measurement.
Discover more Laravel packages by alirezavalipour
or browse all Laravel packages to compare alternatives.
Last updated
This package use for measuring execution time of operation. it's event based
composer require alirezavalipour/laravel-time-measurement
php artisan vendor:publish
php artisan migrate
event(new LatencyStartEvent);
/**
some heavy operation
**/
event(new LatencyFinishEvent( "source of operation for example Userscontroller@create" , "#tag1#tag2"));
LatencyStartEvent first then call LatencyFinishEventLatencyStartEvent then LatencyFinishEvent you would have a log in database or whatever impelemented by LogOperation interface.The Laravel framework is open-sourced software licensed under the MIT license.