最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

ruby on rails - When I have an error in a Grape::Api application, how can I always log it to Sentry? - Stack Overflow

programmeradmin1浏览0评论

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 badges
Add a comment  | 

1 Answer 1

Reset to default 0

I 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.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论