flamix / health
Check Health
dev-main
2024-01-15 08:53 UTC
Requires
- spatie/laravel-health: ^1.22
This package is auto-updated.
Last update: 2024-12-15 10:38:54 UTC
README
Install
# add to config/health.php 'checks' => [ \Flamix\Health\Checks\MemcachedCheck::class, \Flamix\Health\Checks\SSLExpireCheck::class => [ 'name' => 'HelpDesk Ssl', 'domain' => 'http://b24.flamix.info/', ], \Spatie\Health\Checks\Checks\PingCheck::class => [ [ 'name' => 'HelpDesk', 'url' => 'https://cp.flamix.solutions', ], [ 'name' => 'Main Site', 'url' => 'https://en.flamix.solutions/status.php', ], ], ] # Run php artisan health:check # Add to Cron \Flamix\Health\Controllers\HealthController::schedule($schedule);