
How to monitor Laravel application servers
Laravel Monitoring is a package by myself so you can monitor your Laravel application's server resources like CPU, Disk, and Memory
This package provides a beautiful dashboard with a fancy chart showing the server's resource usages from one hour to a day.
Multi-Server support
The amazing part of this package which is my favorite part also, Is you can see monitor all of your servers in one place!
For example, consider that you have several servers running the same source code. Just install this package into your application and share a database between all of the servers so this package can write into it.
Facade Usage
You can get the resource usages by using the below codes
Monitoring::cpu()->usage(); // returns CPU usage
Monitoring::memory()->usage(); // returns Memory usage
Monitoring::disk()->usage(); // returns Disk usage
Check the Github Repo for installation and more information.