New Features: Source Map Upload and More

Honeybadger now supports uploaded source maps via a new API. We've also added a UI to view source maps for each project, released a new version of honeybadger.js, and improved error grouping for JavaScript projects.

tl;dr:

  1. Honeybadger now supports (and recommends) source map upload via a new API.
  2. We've added a new UI under project settings to view your uploaded source maps.
  3. JavaScript error grouping is greatly improved via source maps in honeybadger.js v0.5.0.
  4. honeybadger.js v0.5.0 has a new configuration option (revision) which all current users should upgrade to.

Honeybadger has supported source maps for several years now, and we've learned a lot as our customers have begun to integrate them with their projects. This led us to re-evaluate our approach to source maps, with two goals in mind:

  1. We wanted to make it easier to provide source maps to Honeybadger.
  2. We wanted to use source maps to dramatically improve the grouping of errors in JavaScript projects.

Today, we're launching the next generation of source map support in Honeybadger. It took us a lot of work to get right, but it was well worth it.

Introducing Source Map Upload

To use source maps in Honeybadger before today, you would host your source map files on your servers with your other production assets. When an error was reported to Honeybadger, our servers would download your source map if available and use it to translate the error's stack trace. This worked, but it wasn't very reliable or straight-forward.

With today's update, you can continue to use the old method of hosting your source maps on your own servers (and you can also take advantage of the new error grouping feature!), but we're officially recommending a new, better method: upload your source maps to Honeybadger before each deploy.

To accomplish this, we've built a new API which you can use to upload your source map files to Honeybadger. We recommend uploading your source maps to Honeybadger in your build process right before you upload the rest of your assets to your production servers.

Here's an example of using the new API with curl:

$ curl https://api.honeybadger.io/v1/upload \
    -F api_key=8b460c4e \
    -F revision=dcc69529edf375c72df39b0e9195d60d59db18ff \
    -F minified_url=https://example.com/assets/application.min.js \
    -F source_map=@path/to/application.js.map \
    -F minified_file=@path/to/application.min.js \
    -F http://example.com/assets/application.js=@path/to/application.js \
    -F http://example.com/assets/utils.js=@path/to/utils.js

New UI to View Source Maps

Whether you use hosted source maps or the upload API, Honeybadger saves your source maps for later use.

We've added a list of source maps that Honeybadger has saved for each JavaScript project under Project Settings -> Source Maps -> Uploaded Source Maps:

Source Map Uploads UI

If you don't see the Source Maps tab, make sure you've selected "Client-side JavaScript" as the language under Project Settings -> Edit.

New Error Grouping

One of the big problems with minified stack traces is grouping. It's common to see stack traces like this:

A@http://example.com/assets/application.min.js:31:7525

Minified stack traces are not useful for debugging, and they're definitely not useful for grouping—adding one new line to a source file can cause entirely different line and column numbers to be generated! Because Honeybadger uses the stack trace to group similar errors together, constantly changing stack traces cause a lot of unwanted noise in our projects. Source maps are the answer.

With a source map, line 31, column 7525 of application.min.js may translate to something like:

addThings@http://example.com/assets/utils.js:50

This line is the actual location of the error in the source code, and it's less likely to change, which means grouping errors using the translated stack trace is much more reliable.

Starting in honeybadger.js v0.5.0, the translated stack trace will be used when grouping errors! To get the new grouping, simple upgrade honeybadger.js to 0.5.0 or greater.

The New Revision Option

We've also added a new configuration option to honeybadger.js: revision. The revision option tells Honeybadger which source map to apply to each error, and when using the hosted method, when to update your source map.

If you're already using hosted source maps with Honeybadger, you should upgrade to honeybadger.js v0.5.0 or greater and add the revision option to your Honeybadger configuration:

Honeybadger.configure({
  apiKey: 'project api key',
  environment: 'production',
  revision: 'git SHA/project version'
});

Adding the revision option will make Honeybadger refresh your hosted source map when an error occurs for a new version of your code.

You can use any value for revision—a project version (i.e. "v1.0.1"), a build number ("101"), a random sentence ("'badger edition one-zero-one"). The important part is that each revision is unique. For us, the SHA of the latest GIT commit works best.

Why is Source Map Upload Better?

Using the new upload API is more reliable because the source map is available before any errors are reported.

With the remotely hosted option, the source map may not be applied to the first few errors that arrive because we can't always download remote source maps from your servers immediately.

Send us Your Source Maps!

Integrating source maps with Honeybadger has major benefits; it will improve your error grouping and help you debug your errors faster—it's a no-brainer.

To get started with source maps in your project, check out our our new guide in the Honeybadger docs, and drop us a line at support@honeybadger.io if you have questions.

Send us your source maps!

What to do next:
  1. Try Honeybadger for FREE
    Honeybadger helps you find and fix errors before your users can even report them. Get set up in minutes and check monitoring off your to-do list.
    Start free trial
    Easy 5-minute setup — No credit card required
  2. Get the Honeybadger newsletter
    Each month we share news, best practices, and stories from the DevOps & monitoring community—exclusively for developers like you.
    author photo

    Joshua Wood

    Josh is Honeybadger's resident bug hunter and technical debt collector. Once enthusiastically referred to as a "human exception tracker", he spends his days crafting the middleware, plugins, and gems which keep the 'badger fat and happy through a steady diet of fresh data.

    More articles by Joshua Wood
    Stop wasting time manually checking logs for errors!

    Try the only application health monitoring tool that allows you to track application errors, uptime, and cron jobs in one simple platform.

    • Know when critical errors occur, and which customers are affected.
    • Respond instantly when your systems go down.
    • Improve the health of your systems over time.
    • Fix problems before your customers can report them!

    As developers ourselves, we hated wasting time tracking down errors—so we built the system we always wanted.

    Honeybadger tracks everything you need and nothing you don't, creating one simple solution to keep your application running and error free so you can do what you do best—release new code. Try it free and see for yourself.

    Start free trial
    Simple 5-minute setup — No credit card required

    Learn more

    "We've looked at a lot of error management systems. Honeybadger is head and shoulders above the rest and somehow gets better with every new release."
    — Michael Smith, Cofounder & CTO of YvesBlue

    Honeybadger is trusted by top companies like:

    “Everyone is in love with Honeybadger ... the UI is spot on.”
    Molly Struve, Sr. Site Reliability Engineer, Netflix
    Start free trial