定制 mrtolouei/laravel-health-monitor 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

mrtolouei/laravel-health-monitor

最新稳定版本:v1.1.0

Composer 安装命令:

composer require mrtolouei/laravel-health-monitor

包简介

Lightweight Laravel health check monitor.

README 文档

README

A lightweight, extendable Laravel package for monitoring the health of internal services like Database, Redis, Queue, Cache, Filesystem, and any third-party APIs.

Built for developers who care about observability and application resilience.

License Tests Latest Stable Version

Screen shot

Installation

Install the package via Composer:

composer require mrtolouei/laravel-health-monitor

Publish the configuration and provider stub:

php artisan vendor:publish --tag=health-monitor-config
php artisan vendor:publish --tag=health-monitor-provider

Configuration

The config file will be published to:

config/health-monitor.php

It contains two main sections:

✅ App Services

You can enable/disable health checkers and configure each one:

'app-services' => [
    'database' => [
        'enabled' => true,
        'inspector' => HealthMonitor\Monitors\DatabaseHealthChecker::class,
        'arguments' => [
            'connection' => config('database.default', 'sqlite')
        ],
    ],
    'filesystem' => [
        'enabled' => true,
        'inspector' => HealthMonitor\Monitors\FilesystemHealthChecker::class,
        'arguments' => [
            'disk' => config('filesystems.default', 'local')
        ],
    ],
    ...
],

🌐 Third-Party APIs

You can define any number of third-party HTTP APIs to monitor:

'third-party-services' => [
    'json-test-api' => [
        'enabled' => true,
        'url' => 'https://jsonplaceholder.typicode.com/todos/1',
        'method' => 'GET',
        'headers' => [
            'Accept' => 'application/json',
        ],
        'auth' => null,
        'timeout' => 5,
        'expected_status' => 200,
    ],
],

Supported authentication types:

  • none
  • basic (username & password)
  • bearer (token)
  • ntlm

🔒 Access Control

A Gate is registered automatically to restrict access to non-local environments.

You can customize allowed users in config/health-monitor.php:

'allowed_emails' => [
    'admin@example.com',
    'dev@example.com',
],

📡 Routes

This package registers two routes (behind the viewHealthMonitor gate):

Route Method Description
/api-service-health GET Returns JSON of health check status
/service-health GET Shows a Blade view of statuses

🧪 Add Custom Checkers

Create a new class that implements the HealthCheckerInterface:

use HealthMonitor\Contracts\HealthCheckerInterface;
use HealthMonitor\Dto\HealthResult;

class CustomChecker implements HealthCheckerInterface {
    public function monitor(): HealthResult {
        return new HealthResult('My Checker', 'custom', true);
    }

    public function getConnectionDriver(): string|null {
        return 'custom';
    }
}

Then register it in the config file.

📂 Directory Structure (short overview)

laravel-health-monitor/
├── config/
├── src/
│   ├── Contracts/
│   ├── Dto/
│   ├── Monitors/
│   ├── Facades/
│   ├── Factories/
│   └── HealthMonitorExecutor.php
└── routes/web.php

🙌 Credits

Developed and maintained by Ali Tolouei

Feel free to contribute or suggest features via issues and PRs!

📄 License

This package is open-sourced software licensed under the MIT license.

统计信息

  • 总下载量: 5
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-07-25