Real-Time monitoring package for Laravel alternatives and similar libraries
Based on the "Notifications" category.
Alternatively, view Real-Time monitoring package for Laravel alternatives based on common mentions on social networks and blogs.
-
Notification Pusher
Standalone PHP library for easy devices notifications push. -
JoliNotif
:computer: Send notifications to your desktop directly from your PHP script -
Notificator
A very lightweight library to handle notifications the smart way. -
Notificato
Takes care of Apple push notifications (APNS) in your PHP projects. -
Php-pushwoosh
A PHP Library to easily send push notifications with the Pushwoosh REST Web Services. -
Authy Notification Channel for Laravel
@Authy notification channel for @Laravel, with the ability to send in-app, sms, and call verification tokens. -
Nod
Notifications in PHP (notify-send, growl, etc) like that.
Static code analysis for 29 languages.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Real-Time monitoring package for Laravel or a related project?
README
Inspector | Code Execution Monitoring Tool
[](//packagist.org/packages/inspector-apm/inspector-laravel)
[
](//packagist.org/packages/inspector-apm/inspector-laravel)
[
](code_of_conduct.md)
Simple code execution monitoring for Laravel applications.
- Requirements
- Install
- Configure the Ingestion Key
- Middleware
- Test everything is working
- Official Documentation
- Contribution Guidelines
Requirements
- PHP >= 7.2.0
- Laravel >= 5.5
Install
Install the latest version by:
composer require inspector-apm/inspector-laravel
For Lumen
If your application is based on Lumen you need to manually register the InspectorServiceProvider
:
$app->register(\Inspector\Laravel\InspectorServiceProvider::class);
Configure the Ingestion Key
First put the Ingestion Key in your environment file:
INSPECTOR_INGESTION_KEY=[ingestion key]
You can obtain an INSPECTOR_INGESTION_KEY
creating a new project in your Inspector account.
Attach the Middleware
To monitor web requests you can attach the WebMonitoringMiddleware
in your http kernel or use in one or more route groups based on your personal needs.
/**
* The application's route middleware groups.
*
* @var array
*/
protected $middlewareGroups = [
'web' => [
...,
\Inspector\Laravel\Middleware\WebRequestMonitoring::class,
],
'api' => [
...,
\Inspector\Laravel\Middleware\WebRequestMonitoring::class,
]
Test everything is working
Run the command below:
php artisan inspector:test
Go to https://app.inspector.dev/home to explore your data.
Official documentation
Check out the official documentation
Contributing
We encourage you to contribute to Inspector! Please check out the [Contribution Guidelines](CONTRIBUTING.md) about how to proceed. Join us!
LICENSE
This package is licensed under the [MIT](LICENSE) license.
*Note that all licence references and agreements mentioned in the Real-Time monitoring package for Laravel README section above
are relevant to that project's source code only.