Bugsnag Elixir

Capture exceptions and send them to the Bugsnag API! All it needs is your API key (see example configuration in config/config.exs) and then reporting errors is as simple as:

try do
:foo = :bar
catch
_kind, error -> Bugsnag.crash(error)
end

Roadmap

In the future it will be able report optional information that Bugsnag accepts like session, user and context information. I'll be adding those features as I build out an integration for Plug/Phoenix.