The user data that's logged by default (with sending of PII enabled) looks something like
{'username': teeberg', 'ip_address': '127.0.0.1', 'email': teeberg@example.com'}
I'm trying to add some fields to this, but there doesn't seem to be an official documented way to do this.
Is there a cleaner way than monkey-patching sentry_sdk.integrations.django._set_user_info?
Maybe the request could be sent along as another hint to before_send handlers?
The user data that's logged by default (with sending of PII enabled) looks something like
I'm trying to add some fields to this, but there doesn't seem to be an official documented way to do this.
Is there a cleaner way than monkey-patching
sentry_sdk.integrations.django._set_user_info?Maybe the request could be sent along as another hint to
before_sendhandlers?