Automatic instrumentation, 360 degree coverage of errors, outages and service degradation. Deploy with confidence and be your team's DevOps hero.
Start Your Free Trial 🤘
Over the past year, we've worked closely with the Laravel community to rebuild Honeybadger just for you. Laravel is seriously awesome. We've learned SO MUCH from you so far, and this is only the beginning!
— Starr, Ben, and Josh (a.k.a., the 'Badgers)
Honeybadger simplifies your production stack by combining three common types of monitoring into a single, easy to use platform for PHP/Laravel:
Delight your users by proactively monitoring for and fixing application errors.
Know when your app is down or is having problems due to external issues.
Know when your scheduled tasks and background jobs go missing or silently fail.
Honeybadger is different—we go beyond exceptions to give you full confidence in the health of your production systems. See how we compare to the following services:
How your users experience your app failing is a huge opportunity for you to create a positive interaction with them, and turn annoyance into admiration. Honeybadger customers routinely surprise and delight their users by fixing errors before they have a chance to complain.
In modern Laravel apps, installing Honeybadger is just a few lines of code:
$ composer require honeybadger-io/honeybadger-laravel
// In app/app/Exceptions/Handler.php
public function report(Exception $exception)
{
if (app()->bound('honeybadger') && $this->shouldReport($exception)) {
app('honeybadger')->notify($exception, app('request'));
}
parent::report($exception);
}
Once installed, Honeybadger automatically reports exceptions in web requests, queues, and scheduled tasks. Logged-in users are automatically associated with each error report, making it easy to follow up with affected users after the fix has been deployed.
7
8
9
10
public function chargeSubscription($amount)
{
$this->subscription->charge($amount);
}
Whether it's a single user experiencing a single error, or your site is down for everyone, Honeybadger instantly notifies you when something is wrong.
With built-in uptime monitoring, you'll be the first to know when:
Honeybadger's notification system integrates with all of your favorite services including chat systems like Slack and Google Hangouts, alert platforms like PagerDuty and OpsGenie, and monitoring platforms like DataDog and VictorOps.
Remember the last time the monthly backup failed, a critical email wasn't sent, or some customers didn't get billed? Honeybadger monitors your critical background jobs and services to make sure they check in when they should.
Check-In | Last Seen | Expected | |
---|---|---|---|
Weekly Billing Task
is missing
https://api.honeybadger.io/v1/check_in/1pMIZ8
|
> 1 week ago | 1 minute ago |
With Honeybadger, you'll have a different check-in for each scheduled task, queue, or any other type of background job in your Laravel application, ensuring that each piece of work runs on time.
Do you ever find yourself digging through chat logs to find a solution that your coworker told you about last month? Honeybadger's built-in issue tracker keeps discussion central to each error, so that if it pops up again you'll be able to pick up right where you left off.
Honeybadger also integrates with all of the project management tools you already use, such as GitHub Issues, Jira, Pivotal Tracker, and more. With issue automation, Honeybadger can even create and update issues automatically as they are fixed.
Get a high-level view of your application's health with hotspot detection, affected user reports, weekly summary emails, and more.
With everything in one place, spend less time managing team access and configuring alerts. Honeybadger consolidates the management of 3 tools into one, reducing your administrative overhead by 2/3—that really adds up!
All members of Honeybadger have access to this project.
User | Permission | Status |
---|---|---|
Ben | Admin | |
Josh (Me) | Owner | |
TJ | Collaborator |
PHP-support is too-often an afterthought; we're changing that because Honeybadger cares about Laravel developers. We've customized Honeybadger to give you the badass experience you deserve:
Honeybadger was created by developers. Because we're a bootstrapped company, we answer only to you, our customer. We frequently go above and beyond to provide an awesome experience.
Any questions? Email Starr, Ben, and Josh at support@honeybadger.io
Try Honeybadger free for 15 days.
You don't need a CC to sign up, and satisfaction is guaranteed.
This appears to happen on every deploy.