laravel-self-diagnosis icon indicating copy to clipboard operation
laravel-self-diagnosis copied to clipboard

Checker for the available disk space

Open akalongman opened this issue 5 years ago • 0 comments

For my project, I've implemented checker for the available disk space. Configuration looks like this:

\App\Libraries\SelfDiagnosis\Checks\AvailableDiskSpace::class => [
    'paths' => [
        '/' => '100G', // At least 100G should be available for the path "/"
        '/var/www' => '5G',
    ],
],

If project maintainers will be interested, I can send PR

akalongman avatar Mar 12 '19 13:03 akalongman