Download the PHP package talvbansal/laravel-throttled-failed-jobs without Composer
On this page you can find all versions of the php package talvbansal/laravel-throttled-failed-jobs. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download talvbansal/laravel-throttled-failed-jobs
More information about talvbansal/laravel-throttled-failed-jobs
Files in talvbansal/laravel-throttled-failed-jobs
Package laravel-throttled-failed-jobs
Short Description Get notified when a queued job fails but not too often
License MIT
Informations about the package laravel-throttled-failed-jobs
Throttled notifications for failed jobs within Laravel
This package sends notifications if a queued job fails. However sometimes there are jobs that will trigger far too many notifications when failing and therefore throttling for those would be desirable. Out of the box it can send a notification via mail, Slack, and Microsoft Teams. It leverages Laravel's native notification system.
This package is heavily based on Laravel failed job monitor by Spatie
Installation
You can install the package via composer:
The service provider will automatically be registered.
Next, you must publish the config file:
This is the contents of the default configuration file. Here you can specify the notifiable to which the notifications should be sent. The default notifiable will use the variables specified in this config file.
Configuration
Customizing the notification
The default notification class provided by this package has support for mail, Slack and MS Teams.
If you want to customize the notification you can specify your own notification class in the config file.
Customizing the notifiable
The default notifiable class provided by this package use the channels
, mail
and slack
keys from the config
file to determine how notifications must be sent
If you want to customize the notifiable you can specify your own notifiable class in the config file.
Customizing the throttle window
The default config sets a window of 10 minutes per notification type. You can easily change the length of that window so that you only receive 1 notification of a given type per x number of minutes in the config file.
Usage
If you configured the package correctly, you're done. You'll receive a notification when a queued job fails.
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
Security
If you discover any security related issues, please email :author_email instead of using the issue tracker.
Contributing
Please see CONTRIBUTING for details.
Credits
- Talv Bansal
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
Please see this repo for instructions on how to submit a channel proposal.
All versions of laravel-throttled-failed-jobs with dependencies
guzzlehttp/guzzle Version ^6.4
illuminate/notifications Version ^6.0 || ^7.0
illuminate/support Version ^6.0 || ^7.0