LaravelPackages.net
Acme Inc.
Toggle sidebar
ziming/laravel-memory-health-check

Memory Health Check for Spatie Laravel Health Check and Oh Dear

18.728
1
1.1.3
About ziming/laravel-memory-health-check

ziming/laravel-memory-health-check is a Laravel package for memory health check for spatie laravel health check and oh dear. It currently has 1 GitHub stars and 18.728 downloads on Packagist (latest version 1.1.3). Install it with composer require ziming/laravel-memory-health-check. Discover more Laravel packages by ziming or browse all Laravel packages to compare alternatives.

Last updated

Server Memory Health Check for Spatie Laravel Health and Oh Dear

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Memory Usage Health Check for Spatie Laravel Health Package. Which also works with Oh Dear monitoring service.

In the future more kinds of memory health checks may be added.

The memory usage code is shamelessly copied from Laravel Pulse.

Support Darwin, Linux, Windows and BSD based systems.

You may also wish to check out my other Laravel Health related packages that fills in the missing gaps in Laravel Health and Oh Dear monitoring:

Support me

You can donate to my github sponsor or use my referral link for Oh Dear so I get a small reward if you become a paid customer in the future. This comes at no extra cost to you and helps support my open source work.

https://ohdear.app/?via=laravel-health-memory

Installation

You can install the package via composer:

composer require ziming/laravel-memory-health-check

Usage

// In your Laravel Health Service Provider register() method

use Spatie\Health\Facades\Health;
use Ziming\LaravelMemoryHealthCheck\UsedMemoryCheck;

Health::checks([
    UsedMemoryCheck::new()
        ->warnWhenUsedMemoryIsAbovePercentage(85)
        ->failWhenUsedMemoryIsAbovePercentage(95),
]);

Screenshots

In Laravel Health, it will look like this

laravel health memory usage percentage

In Oh Dear, it will look like this

Oh Dear memory usage percentage Oh Dear memory usage percentage event logs

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

Star History Chart