concept7/laravel-supervisord-monitor

3,370 1
Install
composer require concept7/laravel-supervisord-monitor
Latest Version:0.0.5
PHP:^8.1
License:MIT
Last Updated:Jun 19, 2023
Links: GitHub  ·  Packagist
Maintainer: concept7

"Supervisord Monitor"

Installation

You can install the package via composer:

add the following to repositories in the composer.json:

{
    "type": "git",
    "url": "https://github.com/concept7/laravel-supervisord-monitor.git"
}
composer require concept7/laravel-supervisord-monitor

You can publish the config file with:

php artisan vendor:publish --tag="supervisord-monitor-config"

This is the contents of the published config file:

return [
    'protocol' => 'https',
    'host' => env('SUPERVISORD_MONITOR_HOST', ''),
    'path' => env('SUPERVISORD_MONITOR_PATH', ''),
    'basic_auth' => [
        'username' => env('SUPERVISORD_MONITOR_BASIC_AUTH_USERNAME', null),
        'password' => env('SUPERVISORD_MONITOR_BASIC_AUTH_PASSWORD', null),
    ],
    'daemon_names' => env('SUPERVISORD_MONITOR_DAEMON_NAMES', ''),
];

Usage

Add the following lines to the .env.

When you have the url: https://supervisor-monitor.xyz/supervisor

SUPERVISORD_MONITOR_HOST="supervisor-monitor.xyz"
SUPERVISORD_MONITOR_PATH="supervisor"
SUPERVISORD_MONITOR_BASIC_AUTH_USERNAME="<auth username>"
SUPERVISORD_MONITOR_BASIC_AUTH_PASSWORD="<auth password>"
SUPERVISORD_MONITOR_DAEMON_NAMES="<daemon name as listed in the supervisor monitor web page>"

Run restart with following command

php artisan supervisord-monitor-cli:restart

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

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

Related Packages

concept7/laravel-sendinblue

Laravel package for sending transactional emails with Sendinblue using Sendinblu...

6,494 5
concept7/filament-deepl-translations

This is my package filament-deepl-translations

2,292 0
concept7/filament-invite

Handles invites so setup your users' passwords.

2,160 0
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,315 160
kavenegar/laravel

laravel 4 and 5 kavenegar integration

368,693 86