Krut
Krut

Reputation: 4220

Error monitoring in Phoenix apps

How can I monitor errors in my Phoenix application similar to https://airbrake.io/ for Ruby on Rails apps?

Upvotes: 2

Views: 616

Answers (2)

Roman Smirnov
Roman Smirnov

Reputation: 533

I've written the similar plug to work with Airbrake: https://github.com/romul/airbrake_plug

Feel free to use it.

Upvotes: 1

Chris McCord
Chris McCord

Reputation: 8100

There's no Airbrake Hex package yet, but Jared Norman has put together a Plug for BugSnag integration. You could give the BugSnag service a try, or use his code as a base to put together an Airbrake package.

https://github.com/jarednorman/plugsnag

Upvotes: 6

Related Questions