mirror of
https://github.com/coollabsio/coolify.git
synced 2026-06-13 19:09:50 +00:00
c09d7e412e
- Install laravel/nightwatch package for application monitoring - Create Nightwatch console command to start the monitoring agent - Add NIGHTWATCH_ENABLED and NIGHTWATCH_TOKEN environment variables - Configure nightwatch settings in config/constants.php - Set up Docker s6-overlay services for both development and production - Disable Nightwatch by default in test environment
23 lines
462 B
PHP
23 lines
462 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class Nightwatch extends Command
|
|
{
|
|
protected $signature = 'start:nightwatch';
|
|
|
|
protected $description = 'Start Nightwatch';
|
|
|
|
public function handle(): void
|
|
{
|
|
if (config('constants.nightwatch.is_nightwatch_enabled')) {
|
|
$this->info('Nightwatch is enabled on this server.');
|
|
$this->call('nightwatch:agent');
|
|
}
|
|
|
|
exit(0);
|
|
}
|
|
}
|