From 55b26d60ead8d96c871a4f4345f2490b2818602a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ioni=C8=9B=C4=83?= Date: Wed, 25 Oct 2023 09:56:40 +0100 Subject: [PATCH] add schedule monitoring (#122) --- app/Console/Kernel.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index a6de45e..97b4f43 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -22,7 +22,8 @@ protected function schedule(Schedule $schedule) ->daily() ->at('06:00') ->timezone('Europe/Bucharest') - ->withoutOverlapping(); + ->withoutOverlapping() + ->sentryMonitor(); } /**