admin管理员组文章数量:1344225
We have a Ruby on Rails + Grape application with a lot going on. There are some places where we rescue exceptions and log messages or take corrective actions. Sometimes swallowing the exception, sometimes re-raising it.
We use Sentry as our APM. In some rescue's, we explicitly call Sentry.capture_exception(e)
when we know we'll want to investigate after an error. For most "less interesting" rescues that are accepted normal operations, we don't log it to Sentry.
After yet-another uncaptured exception that we wish we could investigate, we decided to log all exceptions, even those that are, "not interesting."
What's the best way to log all rescued exception to Sentry (or Honeybadger, NewRelic, SignalFx, etc.) globally in a Rails app, and/or specifically a Grape app?
We have a Ruby on Rails + Grape application with a lot going on. There are some places where we rescue exceptions and log messages or take corrective actions. Sometimes swallowing the exception, sometimes re-raising it.
We use Sentry as our APM. In some rescue's, we explicitly call Sentry.capture_exception(e)
when we know we'll want to investigate after an error. For most "less interesting" rescues that are accepted normal operations, we don't log it to Sentry.
After yet-another uncaptured exception that we wish we could investigate, we decided to log all exceptions, even those that are, "not interesting."
What's the best way to log all rescued exception to Sentry (or Honeybadger, NewRelic, SignalFx, etc.) globally in a Rails app, and/or specifically a Grape app?
Share Improve this question asked 7 hours ago David HempyDavid Hempy 6,2972 gold badges51 silver badges81 bronze badges1 Answer
Reset to default 0I ended up adding a rescue_from
callback to our base Grape-derived class:
class NiftyAPI < Grape::API
rescue_from :all do |e|
Rails.logger.error(e.message)
Sentry.capture_exception(e)
error!(e.message, e.status)
end
end
Now, any rescued exception will get logged to Sentry.
If we find that overwhelming, we might blacklist select exception classes from getting sent to Sentry within that callback in the future. That's a more comfortable scenario that waiting to see which exceptions we explicitly want to call capture_exception
on.
本文标签:
版权声明:本文标题:ruby on rails - When I have an error in a Grape::Api application, how can I always log it to Sentry? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743744116a2531439.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论