modernmcguire / sentry-cron-monitoring-laravel
A helper package to utilize the Cron Job monitoring tool from Sentry
Installs: 13 786
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 2
Forks: 2
Open Issues: 0
Requires
- php: ^7.4|^8.0
- illuminate/support: ^7.0|^8.0|^9.0|^10.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
README
A helper package to utilize the Cron Job monitoring tool from Sentry.
Note Sentry Cron Job monitoring is still in beta
Installation
You can install the package via composer:
composer require modernmcguire/sentry-cron-monitoring-laravel
Then publish the config file with:
php artisan vendor:publish --provider="Modernmcguire\SentryCronMonitoringLaravel\SentryCronMonitoringLaravelServiceProvider"
Usage
Add the following macro to your scheduled job that you would like to track.
$schedule->call(function () { DB::table('recent_users')->delete(); }) ->monitor('monitor-id-from-sentry') ->daily();
This will add the before
and after
calls necessary to track the job in Sentry.
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email ben@modernmcguire.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.