Code Monkey home page Code Monkey logo

Comments (10)

shalvah avatar shalvah commented on July 17, 2024 2

Oh no, I'm not actively contributing; I only chimed in to provide context, since I was the original implementer.

from honeybadger-ruby.

shalvah avatar shalvah commented on July 17, 2024 1

Yeah, that's the case. To elaborate, we could decide to enable the Rails error reporter for all cases, but when errors are raised in third-party systems like Sidekiq, the Rails error reporter doesn't have access to any useful context about the job (as at then, at least). By contrast, our middleware integrates with Sidekiq, so it has more context accessible.

One fix here would be to look at the source parameter and check it it's from Solid Queue (dunno what value it uses), and then go ahead to report it.

from honeybadger-ruby.

searls avatar searls commented on July 17, 2024 1

Hello! Was just about to email Josh before checking to see if an issue was open for this. I just spent a few hours feeling REALLY DUMB trying to figure out why activejob (backed by solid queue in my case) wasn't being reported by honeybadger default (especially since I couldn't find any mention in the documentation about a manual setup step for reporting errors from failed jobs, I assumed this was being done by the gem)

from honeybadger-ruby.

subzero10 avatar subzero10 commented on July 17, 2024

It looks like the issue is here.

from honeybadger-ruby.

joshuap avatar joshuap commented on July 17, 2024

It looks like the issue is here.

Based on the comment in that file, I think the issue is that we let our rack middleware catch unhandled errors in web requests, but we have no such catchall middleware for ActiveJob. Does that sound right, @shalvah?

Does anyone have an opinion on the best way to fix it?

from honeybadger-ruby.

subzero10 avatar subzero10 commented on July 17, 2024

One fix here would be to look at the source parameter and check it it's from Solid Queue (dunno what value it uses), and then go ahead to report it.

Can we have a register of the middleware we have defined and report if the source is not in that register instead of just checking the handled flag? Or even a combination of these two checks?

from honeybadger-ruby.

shalvah avatar shalvah commented on July 17, 2024

The source parameter has nothing to do with our middleware... It's an entirely new concept that was introduced with the error reporter, so checking what middleware is registered won't do much, unless you also maintain a mapping of middleware to sources. But also note that the source is not very reliable (an integration has to set it, or it defaults to active_support).

from honeybadger-ruby.

subzero10 avatar subzero10 commented on July 17, 2024

unless you also maintain a mapping of middleware to sources

Yes, that's what I was suggesting. Would you be against that? Though, if source is not reliable, it doesn't make sense to do it.

One fix here would be to look at the source parameter and check it it's from Solid Queue (dunno what value it uses), and then go ahead to report it.

I guess we are left with this solution? I can go ahead and try it if you haven't started working on it already.

from honeybadger-ruby.

searls avatar searls commented on July 17, 2024

For anyone stumbling on this via Google, this is what I did to trigger notifications manually (and to print errors to stdout outside production, which solid queue's CLI does not do by default):

class ApplicationJob < ActiveJob::Base
  rescue_from(StandardError) do |error|
    if Rails.env.production?
      Honeybadger.notify(error, {
        controller: self.class.name,
        context: {
          job_id:,
          arguments:
        }
      })
    else
      SolidQueue.logger.error "Exception occurred processing job #{job_id}: #{error.message}"
      SolidQueue.logger.error error.backtrace.join("\n")
    end
  end
end

from honeybadger-ruby.

stympy avatar stympy commented on July 17, 2024

Here’s another example of working around the issue.

from honeybadger-ruby.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.