Color Mode


    Language

Bugsnag for Vapor 3

January 31, 2019

At Nodes we have been working hard on a Vapor 3 provider for Bugsnag. Bugsnag is a reporting tool that we use extensively to help catch and fix bugs.

In the new version of the library, we've been able to remove a lot of dead code, simplify the API and add support for breadcrumbs.

Migration to Vapor 3

The migration from Vapor 2 to Vapor 3 was a relatively easy one for Bugsnag. The major changes were the use of Codable and the introduction of Futures.

One of the double-edged-swords of Vapor 3 is the asynchronous design. The asynchronous nature of the framework makes stack traces virtually useless. Sadly, we had to remove support for Stack and stack traces.

Registration has seen an update as well. It now uses the Service system.

let reporter = BugsnagReporter(
    apiKey: "<YOUR BUGSNAG API KEY>",
    releaseStage: environment.name,
    shouldReport: environment.name != "local"
    debug: false
)

With a newly simplified API, we introduced support for severities.

reporter.info(...)
reporter.warning(...)
reporter.error(...)

After the migration to Vapor 3, we updated the Bugsnag payload version from 2 to 4. This allows us to support newer features as well as silence warnings about deprecated APIs.

Breadcrumbs

After many feature requests, we have now integrated breadcrumbs into the latest version. Breadcrumb is a feature that helps ease the debugging process by enabling a user to attach data to the life-cycle of a request. To drop a breadcrumb just use the convenience function on Request.

 req.breadcrumb(
     name: "Something happened!",
     type: .manual,
     metadata: ["foo": "bar"]
 )

If you are curious about Bugsnag and would like to know more or try it out, be sure to checkout the repo on Github.

Article Photo by Andrew Neel

serverbugsnagreportreportingrelease

Author

Brett R. Toomey

Brett R. Toomey

Vapor & iOS Developer

Using Swift to take over the world.

You may also like

April 28, 2022

Solution Design for Freerange Developers

At Monstarlab, the role of Solution Architect (SA) provides one career path for developers to progress towards, should they wish to pursue a less hands-on role over time. Many of the most common problems faced by a rookie SA are around the communication o...

Danny Lee

Danny Lee

Solution Architecture

April 15, 2022

Connecting specialized doctors to refugee camps with the help of artificial intelligence

This year's MonstarHacks main theme was Life Science and three selected goals were: Assure equitable health care for everybody Keep the “human touch” in digital healthcare solutions in isolating times Connect refugees with medical support in times of cri...

Faisal AhmedMd. Abu FarhadShafin Ashraf

Faisal Ahmed, Md. Abu Farhad, Shafin Ashraf

MonstarHacksAFK