getsentry / getsentry/sentry-python

Please allow an option for asynchronous calls to capture_exception

Offen
#1,735 1 Kommentar 0 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen
Errors Feature Python
Vorherrschende Sprache
Python
Sterne
2.2k
Forks
669
Ø Merge
1 T. 1 Std.
Gemergte PRs (30 T.)
213

Beschreibung

### Problem Statement

I have an asynchronous Python app which continual polls various rest api's with httpx

Something like
```
try:
async with httpx.AsyncClient() as client:
result = await client.post(url)
# Do some processing on result
except Exception as exc:
capture_exception(exc)
logger.error("There was an error exc = {0}".format(exc))
```

Because my application is async and busy (polling lot's of APIs and getting data) the synchronous capture_exception call causes an issue because it blocks the applications only thread. This is made worse by the fact that an rest api may start returning errors on every call causing capture_exception to block a lot of things.

### Solution Brainstorm

If there was an async version of capture_exception that would make life much better

eg
```
try:
async with httpx.AsyncClient() as client:
result = await client.post(url)
# Do some processing on result
except Exception as exc:
await capture_exception_async(exc)
logger.error("There was an error exc = {0}".format(exc))
```
While capture_exception_async other asynchronous tasks can still run. Is wasn't able to find anything on this by Googling so I assume it just does not exist at the moment.

Beitragsleitfaden

Beitragsleitfaden öffnen

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.