PHPackages                             okipa/laravel-failed-jobs-notifier - 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. [Queues &amp; Workers](/categories/queues)
4. /
5. okipa/laravel-failed-jobs-notifier

Abandoned → [https://github.com/Okipa/laravel-stuck-jobs-notifier](/?search=https%3A%2F%2Fgithub.com%2FOkipa%2Flaravel-stuck-jobs-notifier)ArchivedLibrary[Queues &amp; Workers](/categories/queues)

okipa/laravel-failed-jobs-notifier
==================================

Get notified when failed jobs are stuck.

2.0.0(6y ago)01.2kMITPHPPHP ^7.2

Since Nov 8Pushed 6y ago1 watchersCompare

[ Source](https://github.com/Okipa/laravel-failed-jobs-notifier)[ Packagist](https://packagist.org/packages/okipa/laravel-failed-jobs-notifier)[ Docs](https://github.com/Okipa/laravel-failed-jobs-notifier)[ RSS](/packages/okipa-laravel-failed-jobs-notifier/feed)WikiDiscussions master Synced yesterday

READMEChangelog (5)Dependencies (7)Versions (7)Used By (0)

Get notified when failed jobs are stuck
=======================================

[](#get-notified-when-failed-jobs-are-stuck)

[![Source Code](https://camo.githubusercontent.com/291590c97984a3c456b589f5a91c0791c6ac7643a639d9ee5d8cf63fd057f44a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f736f757263652d6f6b6970612f6c61726176656c2d2d6661696c65642d2d6a6f62732d2d6e6f7469666965722d626c75652e737667)](https://github.com/Okipa/laravel-failed-jobs-notifier)[![Latest Version](https://camo.githubusercontent.com/767ffe8cc9873c8a8bb27d2f38b611df57a4a04d6eea3e2e4c88dbc4ea98ca9b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6f6b6970612f6c61726176656c2d6661696c65642d6a6f62732d6e6f7469666965722e7376673f7374796c653d666c61742d737175617265)](https://github.com/Okipa/laravel-failed-jobs-notifier/releases)[![Total Downloads](https://camo.githubusercontent.com/da8e01b33f153b22efeabbcc826dc3b406635c41a498dfc5aa15a7849df376a8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f6b6970612f6c61726176656c2d6661696c65642d6a6f62732d6e6f7469666965722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/okipa/laravel-failed-jobs-notifier)[![License: MIT](https://camo.githubusercontent.com/08cef40a9105b6526ca22088bc514fbfdbc9aac1ddbf8d4e6c750e3a88a44dca/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d626c75652e737667)](https://opensource.org/licenses/MIT)[![Build Status](https://camo.githubusercontent.com/11400915e159ff5ab961251fc4e4e31279f18d7b99afffce1b2bfb2ea21e11f0/68747470733a2f2f7472617669732d63692e6f72672f4f6b6970612f6c61726176656c2d6661696c65642d6a6f62732d6e6f7469666965722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/Okipa/laravel-failed-jobs-notifier)[![Coverage Status](https://camo.githubusercontent.com/e7cc8704e27c2b65f91f2225f563eb68ba30a75cf25d9ed2f8cf16f0cf2aa1ed/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f4f6b6970612f6c61726176656c2d6661696c65642d6a6f62732d6e6f7469666965722f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/Okipa/laravel-failed-jobs-notifier?branch=master)[![Quality Score](https://camo.githubusercontent.com/7c4581957c0733b647701ba7545c95779273095055dea7b68029f2b18a0fae29/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f4f6b6970612f6c61726176656c2d6661696c65642d6a6f62732d6e6f7469666965722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/Okipa/laravel-failed-jobs-notifier/?branch=master)

Get notified when some jobs are stuck in your `failed_jobs` table for a number of days of your choice.
Notifications can be sent by mail, Slack and webhooks (chats often provide a webhook API).

⚠️ **Package abandoned =&gt; please now use ** ⚠️

Compatibility
-------------

[](#compatibility)

Laravel versionPHP versionPackage version^5.8^7.2^2.0^5.5^7.1^1.0Table of Contents
-----------------

[](#table-of-contents)

- [Installation](#installation)
- [Configuration](#configuration)
- [Usage](#usage)
- [Testing](#testing)
- [Changelog](#changelog)
- [Contributing](#contributing)
- [Credits](#credits)
- [Licence](#license)

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

[](#installation)

- Install the package with composer :

```
composer require "okipa/laravel-failed-jobs-notifier:^1.0"
```

- Laravel 5.5+ uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.

If you don't use auto-discovery or if you use a Laravel 5.4- version, add the package service provider in the `register()` method from your `app/Providers/AppServiceProvider.php` :

```
// laravel bootstrap components
// https://github.com/Okipa/laravel-failed-jobs-notifier
$this->app->register(\Okipa\LaravelFailedJobsNotifier\FailedJobsReporterServiceProvider::class);
```

Configuration
-------------

[](#configuration)

Publish the package configuration and override the available config values :

```
php artisan vendor:publish --tag=failed-jobs-notifier:config
```

Usage
-----

[](#usage)

Just add this command in the `schedule()` method of your `\App\Console\Kernel` class :

```
$schedule->command('queue:failed:notify')->twiceDaily(9, 15);
```

And you will be notified as soon as some jobs will be stuck in the `failed_jobs` table for the number of days you configured.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Arthur LORENT](https://github.com/okipa)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity57

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 ~35 days

Recently: every ~44 days

Total

6

Last Release

2199d ago

Major Versions

1.0.3 → 2.0.02020-03-16

2.0.0 → 3.0.0.x-dev2020-05-05

PHP version history (3 changes)1.0.0PHP &gt;=7.1

2.0.0PHP ^7.2

3.0.0.x-devPHP ^7.4

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

phplaravelpackagenotifierqueuejobjobsnotifyfailedokipalaravel-failed-jobs-notifier

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/okipa-laravel-failed-jobs-notifier/health.svg)

```
[![Health](https://phpackages.com/badges/okipa-laravel-failed-jobs-notifier/health.svg)](https://phpackages.com/packages/okipa-laravel-failed-jobs-notifier)
```

###  Alternatives

[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

3786.5k](/packages/harris21-laravel-fuse)[renoki-co/horizon-exporter

Export Laravel Horizon metrics using this Prometheus exporter.

24152.7k](/packages/renoki-co-horizon-exporter)[pmatseykanets/artisan-beans

Easily manage your Beanstalkd job queues right from the Laravel artisan command

4482.1k](/packages/pmatseykanets-artisan-beans)[mookofe/tail

RabbitMQ and PHP client for Laravel and Lumen that allows you to add and listen queues messages just simple

5552.5k](/packages/mookofe-tail)[webparking/laravel-queue-ensurer

This composer package provides a Laravel queue ensurer.

6416.1k](/packages/webparking-laravel-queue-ensurer)[hpwebdeveloper/laravel-failed-jobs

UI for Laravel failed jobs.

183.1k](/packages/hpwebdeveloper-laravel-failed-jobs)

PHPackages © 2026

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