/airbrake-js

Airbrake Javascript

Primary LanguageJavaScript

NOTE: This is a work in progress. This document isn't ready for production deployment.

Airbrake

This is the javascript source code for notifying Airbrake when your javascript has an exception.

When an uncaught exception occurs, Airbrake Javascript notifier will POST the relevant data to the Airbrake server specified in your environment.

Help

For help with using Airbrake and this notifier visit our support site.

Install compiled and minified from Airbrake CDN.

Basic Setup.

Include the following Javascript snippet in your header.

<script type="text/javascript">
  (function(callback) {
    var ab = document.createElement('script');
    ab.type = 'text/javascript'; ab.async = true;
    ab.onload = ab.onreadystatechange = callback;
    // this should match your copy of the compiled notifier.js or notifier.min.js
     ab.src = (("https:" == document.location.protocol) ? "https://ssljscdn" : "http://jscdn") + ".airbrake.io/notifier.min.js";
    var p = document.getElementsByTagName('script')[0];
    p.parentNode.insertBefore(ab, p);
  }(function () {
    Airbrake.setRequestType('GET');
    Airbrake.setGuessFunctionName(false);
    // the default is api.airbrake.io
    //Airbrake.setHost('api.airbrake.io');
    // insert your api key
    Airbrake.setKey('xxxxxxxxxxxxxxxxxxxxxxx');
    // set the environment
    Airbrake.setEnvironment('dev');
    // add any defaults
    Airbrake.setErrorDefaults({
      // you probably want to leave this line, so the error url gets set to the page url
      url: document.URL,
      // controller
      component: "cookies",
      // action
      action: "eat",
      // add some extras, e.g.
      user: "steve",
    });
  }));
</script>

This should asynchronously load the airbrake notifier after your page has finished loading.

Options.

Guess Function name using Stacktrace.js.

We include stacktrace.js into the Airbrake notifier. To use it to guess the function name and get the stacktrace add Airbrake.setGuessFunctionName(true); to the settings.

Airbrake.setGuessFunctionName(true);

Manually Send Errors.

-- Work in Progress --

	Airbrake.captureException (new Error("hello error world."));

We handle the Error (exception) manually with "Airbrake.captureException (err);", we only get the "message" field of this exception. Field "lineNumber" and "url" will obtained, since not all browsers fill these Error fields. Thus, exception handling so "Airbrake.captureException (err);" and thus "window.onerror = function (message, file, line) {" will be different.

Send Parameters.

-- Work in Progress --

Track JQuery Errors for JQuery 1.7

-- Work in Progress --

	Airbrake.setTrackJQ(true)

Development

Run Ant to compile the source. We don't have a testing framework in place, but we welcome full requests.

Changelog

v0.1.2-JSON

  • New configuration parameter: outputFormat. Supported formats are XML and JSON.
  • Numerous improvements in logic of XML notification generator: Util.substituteArr was implemented; views were separated from logic (REQUEST_VARIABLE_GROUP_XML, REQUEST_VARIABLE_XML, BACKTRACE_LINE_XML).
  • Stacktrace.js updated to avoid issues in Opera 11+.
  • New tests, more comments, unused code removed.

v0.1.1

  • Public API improvement: getters and setters are generated automatically from inner JSON. e.g. key value can be set with Airbrake.setKey(<key value>); and the current value is available as Airbrake.getKey();.
  • New configuration parameter: requestType. Set it to 'GET' (Airbrake.setRequestType('GET');) to send <iframe> notification request; 'POST' is for XMLHttpRequest POST.
  • Basic Jasmine test are available in tests/ directory.

Credits

Airbrake is maintained and funded by airbrake.io

Thank you to all the contributors.

The names and logos for Airbrake are trademarks of Exceptional Software Inc.

License

Airbrake is Copyright © 2008-2012 Airbrake. It is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.