PHPackages                             pentangle/backpack-scheduled-monitored-tasks - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. pentangle/backpack-scheduled-monitored-tasks

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

pentangle/backpack-scheduled-monitored-tasks
============================================

This is my package backpack-monitored-scheduled-tasks

2.0.0(3y ago)0179MITPHPPHP ^8.1

Since Aug 9Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Pentangle/backpack-monitored-scheduled-tasks)[ Packagist](https://packagist.org/packages/pentangle/backpack-scheduled-monitored-tasks)[ Docs](https://github.com/Pentangle/backpack-monitored-scheduled-tasks/)[ RSS](/packages/pentangle-backpack-scheduled-monitored-tasks/feed)WikiDiscussions main Synced today

READMEChangelog (3)Dependencies (18)Versions (4)Used By (0)

This is my package backpack-monitored-scheduled-tasks
=====================================================

[](#this-is-my-package-backpack-monitored-scheduled-tasks)

[![Latest Version on Packagist](https://camo.githubusercontent.com/8332c841152024f3827825c1e9c6fcd734b6152f1523923eb1a7b50e45d7ed22/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f70656e74616e676c652f6261636b7061636b2d6d6f6e69746f7265642d7363686564756c65642d7461736b732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pentangle/backpack-monitored-scheduled-tasks)

[![Total Downloads](https://camo.githubusercontent.com/1ab3beb2ed3d135adff59dae0104320431303983f78583303843522ea9f787da/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f70656e74616e676c652f6261636b7061636b2d6d6f6e69746f7265642d7363686564756c65642d7461736b732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pentangle/backpack-monitored-scheduled-tasks)

---

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

Support us
----------

[](#support-us)

[![](https://camo.githubusercontent.com/6e9af8d8e9f8365d17735d562163520eccdbb8dc0b694ec9322f6584048969fe/68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f6261636b7061636b2d6d6f6e69746f7265642d7363686564756c65642d7461736b732e6a70673f743d31)](https://spatie.be/github-ad-click/backpack-monitored-scheduled-tasks)

We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require pentangle/backpack-monitored-scheduled-tasks
```

Add menu item to sidebar:

```
php artisan backpack:add-sidebar-content " Monitored scheduled tasks"
```

You can publish and run the migrations with:

```
php artisan vendor:publish --provider="Spatie\ScheduleMonitor\ScheduleMonitorServiceProvider" --tag="schedule-monitor-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --provider="Pentangle\BackpackMonitoredScheduledTasks\AddonServiceProvider" --tag="backpack-monitored-scheduled-tasks-config"
```

This is the contents of the published config file:

```
return [
    /*
     * The schedule monitor will log each start, finish and failure of all scheduled jobs.
     * After a while the `monitored_scheduled_task_log_items` might become big.
     * Here you can specify the amount of days log items should be kept.
     */
    'delete_log_items_older_than_days' => 30,

    /*
     * The date format used for all dates displayed on the output of commands
     * provided by this package.
     */
    'date_format' => 'd-m-Y H:i:s',

    'models' => [
        /*
         * The model you want to use as a MonitoredScheduledTask model needs to extend the
         * `Spatie\ScheduleMonitor\Models\MonitoredScheduledTask` Model.
         */
        'monitored_scheduled_task' => \Pentangle\BackpackMonitoredScheduledTasks\Models\MonitoredScheduledTask::class,

        /*
         * The model you want to use as a MonitoredScheduledTaskLogItem model needs to extend the
         * `Spatie\ScheduleMonitor\Models\MonitoredScheduledTaskLogItem` Model.
         */
        'monitored_scheduled_log_item' => Spatie\ScheduleMonitor\Models\MonitoredScheduledTaskLogItem::class,
    ],

    /*
     * Oh Dear can notify you via Mail, Slack, SMS, web hooks, ... when a
     * scheduled task does not run on time.
     *
     * More info: https://ohdear.app/cron-checks
     */
    'oh_dear' => [
        /*
         * You can generate an API token at the Oh Dear user settings screen
         *
         * https://ohdear.app/user/api-tokens
         */
        'api_token' => env('OH_DEAR_API_TOKEN', ''),

        /*
         *  The id of the site you want to sync the schedule with.
         *
         * You'll find this id on the settings page of a site at Oh Dear.
         */
        'site_id' => env('OH_DEAR_SITE_ID'),

        /*
         * To keep scheduled jobs as short as possible, Oh Dear will be pinged
         * via a queued job. Here you can specify the name of the queue you wish to use.
         */
        'queue' => env('OH_DEAR_QUEUE'),
    ],
];
```

```
composer test
```

Credits
-------

[](#credits)

- [Séan Poynter-Smith](https://github.com/Pentangle)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

3

Last Release

1423d ago

PHP version history (2 changes)2.0.0PHP ^8.1

1.0.1PHP ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/e705d3c99d69560b9ee09ad425d0243f89cab5108940b11347f4ab62d8ba8821?d=identicon)[pentangle](/maintainers/pentangle)

---

Top Contributors

[![spoyntersmith](https://avatars.githubusercontent.com/u/22387308?v=4)](https://github.com/spoyntersmith "spoyntersmith (4 commits)")

---

Tags

laravelbackpackpentanglebackpack-scheduled-monitored-tasks

###  Code Quality

TestsPest

Static AnalysisPsalm

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/pentangle-backpack-scheduled-monitored-tasks/health.svg)

```
[![Health](https://phpackages.com/badges/pentangle-backpack-scheduled-monitored-tasks/health.svg)](https://phpackages.com/packages/pentangle-backpack-scheduled-monitored-tasks)
```

###  Alternatives

[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

124603.0k](/packages/worksome-exchange)[thomascombe/backpack-async-export

This is a package to manage async export in Backpack for Laravel

1530.9k](/packages/thomascombe-backpack-async-export)[tarfin-labs/event-machine

Event-driven state machines for Laravel with event sourcing, type-safe context, and full audit trail.

199.4k](/packages/tarfin-labs-event-machine)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
