getsentry / getsentry/sentry-python
Document manual session tracking
Offen
Docs
good first issue
Help Wanted
Python
- Vorherrschende Sprache
- Python
- Sterne
- 2.2k
- Forks
- 669
- Ø Merge
- 1 T. 1 Std.
- Gemergte PRs (30 T.)
- 213
Beschreibung
### Problem Statement
If you have a non WSGI/ASGI project than there is no automatic session tracking.
But one can easily add session tracking by hand like this:
```
from sentry_sdk.hub import Hub
from sentry_sdk.sessions import auto_session_tracking
hub = Hub(Hub.current)
with auto_session_tracking(hub):
# all the code that belong to one session goes here.
```
### Solution Brainstorm
This should be somewhere in the documentation, so that people can add session tracking to their projects.
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.