illuma-law/healthcheck-redis

Focused redis health check for Spatie's Laravel Health package.

Maintainers

Package info

github.com/illuma-law/healthcheck-redis

pkg:composer/illuma-law/healthcheck-redis

Fund package maintenance!

illuma-law

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.2 2026-04-20 18:47 UTC

This package is auto-updated.

Last update: 2026-04-20 18:50:48 UTC


README

Tests Packagist License Latest Stable Version

A focused redis health check for Spatie's Laravel Health package.

This package provides direct health checks to verify that the PHP redis extension is installed and that your Redis instance is operating within safe memory limits.

Features

  • Extension Detection: Checks if the PHP redis extension is enabled and reports the specific version installed.
  • Memory Monitoring: Verifies that your Redis instance is not exceeding its maxmemory limit (or a custom threshold).
  • Configurable Strictness: Choose whether a missing extension or high memory usage should return a Warning or a Failure status.

Installation

Require this package with composer:

composer require illuma-law/healthcheck-redis

Usage & Integration

Register the checks inside your application's health service provider (e.g. AppServiceProvider or a dedicated HealthServiceProvider), alongside your other Spatie Laravel Health checks:

1. Redis Extension Check

use IllumaLaw\HealthCheckRedis\RedisExtensionCheck;
use Spatie\Health\Facades\Health;

Health::checks([
    RedisExtensionCheck::new()->required(true),
]);

2. Redis Memory Check

use IllumaLaw\HealthCheckRedis\RedisMemoryCheck;
use Spatie\Health\Facades\Health;

Health::checks([
    RedisMemoryCheck::new()
        ->connection('default')
        ->thresholdPercent(90),
]);

Expected Result States

  • Ok: The extension is installed and Redis memory usage is within safe limits.
  • Warning: The extension is missing (if not required) or Redis memory usage is above the warning threshold.
  • Failed: The extension is missing (if required) or Redis has reached its maxmemory limit.

Testing

Run the test suite:

composer test

License

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