american-technologies/laravel-script-time-logger

Logs the runtime of a script to a database table, used for automated scripts to see fluctuations in time

v0.0.6 2023-03-30 19:46 UTC

This package is auto-updated.

Last update: 2024-03-30 00:31:11 UTC


README

The AmTech Script Time Logger is an addon to Laravel that allows you track the duration of a script you are running to a database. This can be utilized for setting cron schedules, checking performance etc.

Installation

Use Composer to install into Laravel project.

# install package
composer require american-technologies/laravel-script-time-logger

# run migrate to create database
php artisan migrate 

Usage

use AmericanTechnologies\ScriptTimeLogger\ScriptTimeLogger;

$scriptLog = new ScriptTimeLogger();

$scriptLog->startTimer($nameOfScript);

...

$scriptLog->endTimer($optionalNote);

License

MIT