rafaeltovar/laravel-job-trackable is a Laravel package for laravel job tracked in redis..
It currently has 0 GitHub stars and 13 downloads on Packagist (latest version v1.0.0).
Install it with composer require rafaeltovar/laravel-job-trackable.
Discover more Laravel packages by rafaeltovar
or browse all Laravel packages to compare alternatives.
Last updated
Track Laravel Jobs, saving status, inputs, outputs and date times during a week in Redis.
Based on imTigger/laravel-job-status.
Jobs tracks is saved during a week in Redis. This time can be setted in config file.
composer require rafaeltovar/laravel-job-trackable
Step 1. Include Service Provider into providers section in config/app.php.
'providers' => [
//...
LaravelJobTrackable\Providers\LaravelJobTrackableServiceProvider::class,
];
Step 2. Add trait to our Laravel Job and init track with track method.
Step 3.* Use setOutput method for save final Job output.
<?php
namespace App\Jobs;
use LaravelJobTrackable\Jobs\TrackableJob;
class TrackedJob extends Job
{
use TrackableJob;
public function __construct($input1, $input2) {
// track the job-execution
$this->track(['input1' => $input1, 'input2' => $input2]); // inputs are optionals
}
public function handle()
{
// Do something...
$this->setOutput(['output1' => $output1]); // optional
}
}
If you need use the controller for get jobs can you use it.
$ctrl = app(\LaravelJobTrackable\TrackedJobController::class);
try {
$track = $ctrl->get($idJobTrack);
// Do something...
} catch (\Exception $e) { // not found
// Do something...
}
The object LaravelJobTrackable\TrackedJob have the following public methods:
// TODO
| Method | Allowed values | | | |
|---------------------------------|----------------|---|---|---|
| getStatus() : string | | | | |
| setStatus(string) : self | | | | |
| setOutput(array) | | | | |
| getOutput(): array | | | | |
| getQueuedAt() ?\Carbon\Carbon | | | | |