goedemiddag/laravel-schedule-monitor

v1.4.0 2024-04-30 08:52 UTC

This package is auto-updated.

Last update: 2024-08-30 09:31:32 UTC


README

此包允许您监控您的定时命令和任务。

支持的实现

安装

首先使用composer通过以下命令安装包

composer require goedemiddag/laravel-schedule-monitor

用法

Sentry

monitorWithSentry方法链到计划中。此方法接受Sentry提供的UUID。

protected function schedule(Schedule $schedule)
{
    $schedule->command(Inspire::class)
        ->daily()
        ->monitorWithSentry('[uuid]')
}

Better Stack

monitorWithBetterstack方法链到计划中。此方法接受Better Stack提供的ID。

protected function schedule(Schedule $schedule)
{
    $schedule->command(Inspire::class)
        ->daily()
        ->monitorWithBetterstack('[id]')
}