devops-health
README.md
Добавление канала
В файл ".env"
DEVOPS_SOURCE_TOKEN=TOKENLOG_CHANNEL=devopshealth
В файл "config/logging.php"
<?php
return [ 'channels' => [ ######################################## 'devopshealth' => [ 'driver' => 'monolog', 'level' => env('LOG_LEVEL', 'debug'), 'handler' => \Dimitriytiho\DevopsHealth\Logging\Monolog\LogtailHandler::class, 'handler_with' => [ 'sourceToken' => env('DEVOPS_SOURCE_TOKEN'), ], ], ######################################## ],];
Включение Health по инструкции https://github.com/shuvroroy/filament-spatie-laravel-health
Добавление канала в конфиг Health
В файл "config/health.php"
return [ 'notifications' => [ 'enabled' => true, 'notifications' => [ \Dimitriytiho\DevopsHealth\Notifications\DevopsHealthNotification::class => ['devops_health'], ], ], 'notifiable' => Spatie\Health\Notifications\Notifiable::class,];