Monitoring and alerting for Laravel applications
libaro/laravel-monitoring is a Laravel package for monitoring and alerting for laravel applications.
It currently has 0 GitHub stars and 1.237 downloads on Packagist (latest version 0.2.0).
Install it with composer require libaro/laravel-monitoring.
Discover more Laravel packages by libaro
or browse all Laravel packages to compare alternatives.
Last updated
The Libaro monitoring package, a config based monitoring setup for your Laravel applications.
You can install the package using composer:
composer require libaro/laravel-monitoring
You can publish the config file with:
php artisan vendor:publish --tag="monitoring-config"
You can enable queue monitoring by specifying your queue name as an array key followed by the configuration for that queue.
| Option | Value | Description | |------------------|:-------:|------------------------------------------------------------------------------------------------------------------------------------| | max_wait_minutes | int | A test job will be dispatched on that queue. When the job is not processed within the specified time, a notification will be sent. |
[
...
'queue' => [
'invoicing' => [ // queue name
'max_wait_minutes' => 5, // Fails when test job is not processed within 5 minutes
],
],
...
]
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.