omatech/laravel-check-supervisor

0.9.4 2018-11-13 17:21 UTC

This package is not auto-updated.

Last update: 2024-04-28 03:03:56 UTC


README

Command to check that Supervisor is running and automatically restart it.

Installation

1.- Require the package in your composer.json.

composer require omatech/laravel-check-supervisor

2.- Register the service provider.

    // config/app.php
    
    'providers' => [
        ...
        Omatech\CheckSupervisor\CheckSupervisorServiceProvider::class,
        ...
    ];

3.- Optionally, you can publish the config file of the package if you want to use the automatic restart option

php artisan vendor:publish 

And then, select:

Omatech\CheckSupervisor\App\Providers\PublishServiceProvider

Usage

1.- Use the command to know if supervisor is down. You can automate it in your crontab.

php artisan supervisor:check

2.- Create a listener to capture the package events. Here you can create your custom notification. Example:

php artisan make:listener SupervisorListener
<?php

namespace App\Listeners;

use App\Mail\YourCustomEmail;
use Illuminate\Support\Facades\Mail;

class SupervisorListener
{
    protected $log;

    /**
     * Create the event listener.
     *
     * @return void
     */
    public function __construct($log = null)
    {
        $this->log = $log;
    }

    /**
     * Handle the event.
     *
     * @param  object  $event
     * @return void
     */
    public function handle($event)
    {
        Mail::to('me@example.com')->send(new YourCustomEmail($this->log));
    }
}

You can capture feedback from the package using a param in __construct.

3.- Register the events and listeners in your EventServiceProvider. Example:

    protected $listen = [
        ... 
        
        SupervisorIsNotRunning::class => [
            SupervisorListener::class
        ],
        SupervisorRestarted::class => [
            SupervisorListener::class
        ]
        
        ...
    ];

4.- If you want to activate the automatic restart option, set the variable restart-supervisor in the configuration file check-supervisor.php to true.

    return [
        'restart-supervisor' => true
    ];

Credits

Special thanks

Organization

Contributors

See the contributors list here.

License

MIT license.