GithubHelp home page GithubHelp logo

Comments (3)

mmerickel avatar mmerickel commented on May 3, 2024

I noticed some crashing threads that weren't getting reported to sentry and was surprised. I've updated my code to catch them myself but I agree that sentry could try harder here.

Sentry should be able to monkeypatch threading.Thread._bootstrap_inner. Unfortunately there is not a good spot to monkeypatch Thread.run (which a public api overridable by users) which Thread._bootstrap_inner calls directly. Is there a standard approach sentry uses to monkeypatching without vendoring the current _bootstrap_inner code into sentry? So far that seems to me to be the only option.

from sentry-python.

untitaker avatar untitaker commented on May 3, 2024

Two ideas:

  • Patch Thread._exc_info to capture the exception (it gets called in _bootstrap_inner)
  • Patch Thread._bootstrap_inner, but inside the patched function patch self.run and just call the old _bootstrap_inner.

There is no standard approach to this. An established rule is to patch public/stable APIs rather than private/unstable ones but it seems like we have no choice here.

from sentry-python.

untitaker avatar untitaker commented on May 3, 2024

Actually we can do something that uses only public API: Patch Thread.start, patched functions patches self.run and calls old Thread.start.

from sentry-python.

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.