PHP code example of saeedvaziry / laravel-monitoring

1. Go to this page and download the library: Download saeedvaziry/laravel-monitoring library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

saeedvaziry / laravel-monitoring example snippets


'aliases' => [
    ...
    'Monitoring' => \SaeedVaziry\Monitoring\Facades\Monitoring::class
    ...
];

Monitoring::cpu()->usage(); // returns CPU usage
Monitoring::memory()->usage(); // returns Memory usage
Monitoring::disk()->usage(); // returns Disk usage

$schedule->command('monitoring:purge')->daily();
shell
php artisan monitoring:publish
shell
php artisan migrate