
Angular Error Monitoring
Make Debugging Easy with Airbrake Angular
Use Airbrake with Angular
Create an error handler
The first step is to create an error handler with a Notifier
initialized with your projectId
and projectKey
. In this example the handler will be in a file called airbrake-error-handler.ts
.
// src/app/airbrake-error-handler.ts
import { ErrorHandler } from '@angular/core';
import { Notifier } from '@airbrake/browser';
export class AirbrakeErrorHandler implements ErrorHandler {
airbrake: Notifier;
constructor() {
this.airbrake = new Notifier({
projectId: 1,
projectKey: 'FIXME',
environment: 'production'
});
}
handleError(error: any): void {
this.airbrake.notify(error);
}
}
Add the error handler to your AppModule
The last step is adding the AirbrakeErrorHandler
to your AppModule
, then
your app will be ready to report errors to Airbrake.
// src/app/app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule, ErrorHandler } from '@angular/core';
import { AppComponent } from './app.component';
import { AirbrakeErrorHandler } from './airbrake-error-handler';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
],
providers: [{provide: ErrorHandler, useClass: AirbrakeErrorHandler}],
bootstrap: [AppComponent]
})
export class AppModule { }
To test that Airbrake has been installed correctly in your Angular project, just open up the JavaScript console in your internet browser and paste in:
window.onerror("TestError: This is a test", "path/to/file.js", 123);
Frictionless error monitoring for AngularJS
While you’re monitoring your servers and apps, who is monitoring your user experience? Your Angular app might be up and running, but your customers could still be seeing errors. That's where Airbrake Angular Error Monitoring comes in.
Airbrake silently monitors your Angular application, 24 hours/day, 7 days/week, alerting you in real-time to all new errors affecting your users. With Airbrake Angular Error Monitoring, you’ll receive general information about your app's performance, as well as:
Detailed stack traces - making it easy to drill down and catch troublesome errors
- Airbrake tells you where an error occurred, right down to the line of code that broke.
- Keep an eye on error-prone files with hotspots.
- Airbrake Angular provides a detailed overview of each error, including the date it first occurred, the date it was last seen, how many occurrences there have been of a particular error, and more.
Deploy tracking - see the impact of a deploy on your error volumes and types
- You can track who deployed what via the deploy tab in the Airbrake application.
- Quickly spot trends in error occurrences with easy-to-understand graphs.
- Depending on which paid plan you’re on, deployment history is available for up to 90 days.
Aggregated error data - identify affected users, browsers, URLs, and more
- Airbrake aggregations are available for every single error.
- The aggregation tab includes information about the error, remote addresses and countries, affected users and their IP addresses, browsers the error showed up on, etc.
- Airbrake also allows for custom aggregations.
Other amazing Airbrake features
- It takes less than three minutes to install Airbrake.
- Unlimited On-Demand Errors and Events.
- Airbrake integrates with popular applications such as Slack, Trello, GitHub, JIRA, and so much more.
- One Airbrake account can have unlimited users.
- There’s no limit on how many applications and projects you can monitor using Airbrake.
The AngularJS notifier is easy to install and works well with all frameworks. Airbrake Angular Error Monitoring and Reporting is immediate and delivers notification about errors via the communication tool of your choice, including Campfire, Webhooks, or email. Isn't it time you stop losing customers to a bad user experience? Try Airbrake with a free 30-day trial; no credit card required!
KEY FEATURES:
Blazing fast, real-time errors alerts
Lightweight notifier installs quickly and won't impact your app performance
Receive error notifications via email, Slack, or webhooks
Fast error search and filtering within your Airbrake dashboard
Advanced data security including SOC-2 Compliance and SAML Single Sign-On - included with all Airbrake plans
Integrates with GitHub, Trello, Slack, JIRA, Pivotal Tracker, GitHub Enterprise, GitLab, GitLab CE/EE, Bitbucket, custom webhooks, and other 3rd party apps
Dupe error detection
Customizable error filtering
Unlimited users and projects
Comprehensive read & write API
Deploy tracking to monitor code quality
Performance insight about your total app health including your code, production environment, and the user experience.