goedemiddag/laravel-schedule-monitor

Monitoring for scheduled jobs

Installs: 2 204

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/goedemiddag/laravel-schedule-monitor

v2.0.0 2025-07-07 10:20 UTC

This package is auto-updated.

Last update: 2025-10-07 11:08:35 UTC


README

This package allows you to monitor your scheduled commands and jobs.

Supported implementations:

Installation

First use composer to install the package using the following command

composer require goedemiddag/laravel-schedule-monitor

Usage

Sentry

Chain the monitorWithSentry method onto the schedule. This method accepts the UUID provided by Sentry.

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

Better Stack

Chain the monitorWithBetterstack method onto the schedule. This method accepts the ID provided by Better Stack.

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