kregel / nova-failed-jobs-tool
A Nova tool to help debug failed jobs
Installs: 50 269
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 1
Forks: 4
Open Issues: 23
Language:JavaScript
Requires
- php: >=7.1.0
- kregel/exception-probe: ^1.0
Requires (Dev)
- orchestra/testbench: ^3.6
- phpunit/phpunit: 7.1
- dev-master
- v1.0.0
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
- v0
- dev-dependabot/npm_and_yarn/qs-6.4.1
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/css-what-2.1.3
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/chownr-1.1.4
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/tar-2.2.2
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/codemirror-5.58.2
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-add-soft-delete-support
This package is auto-updated.
Last update: 2024-11-08 23:57:45 UTC
README
Ever try to figure out why some job failed? Ever try to do that when you're using SQS? It's a pain isn't it? Well, no more...
This tool aims to help you figure out why a job might have failed. It gives you relevant code snippets and information about the values pushed through for a given job. You can toggle the stacktrace to view vendor sources, or you can choose to hide them.
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require kregel/nova-failed-jobs-tool
Next up, you must register the tool with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvider.php // ... public function tools() { return [ // ... new \Kregel\NovaFailedJobs\Tool(), ]; }
Usage
Click on the "Failed Job Manager" menu item in your Nova app to see the tool provided by this package.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email github@austinkregel.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.