Anton Pirker

Results 359 comments of Anton Pirker

Hey @dvarrazzo ! Thanks for reporting this! I will have a look today!

Ok, I had a look. **tl;dr:** The logging instrumentation serializes the parameters of the `logging.error("Wrong pwd %s, exception: %s", "secret123", ex)` command with our global serializer uses `repr()` to serialize...

There is also scrubbing of sensitive data happening on the server (on `relay` which is the tool we have to ingest events sent to Sentry.io). They have an open issue...

So @dvarrazzo the solution is that our server will improve scrubbing of sensitive data (see linked issue above) and you can add an [EventScrubber](https://docs.sentry.io/platforms/python/data-management/sensitive-data/#event_scrubber) or a [before_send](https://docs.sentry.io/platforms/python/data-management/sensitive-data/#platformidentifier-namebefore-send---platformidentifier-namebefore-send-transaction-) hook to remove...

Another solution would be to not use the `logging` integration and after your error log statement reraise the error and let our FastAPI integration capture it. (The `logging` integration is...

As the improvements to data scrubbing in `relay` have been released some time ago and we always will improve the data scrubbing, i will close this issue. If you have...

Hey @raul3z ! To follow up and summarize: - If you do it like this, everything should work as expected: https://github.com/antonpirker/sentry-support-issues/blob/main/transactions_not_sent.py - In your initial log output you have seven...

Hey @seyoon-lim, some more time passed, but I have added some suggestion to fix the remaining problem. Would you be so nice to apply this suggestion in my review to...

@seyoon-lim could you give me permission to push to your branch? Then I can push my fixes for the failing tests. Thanks.

Hey @seyoon-lim thanks again for the contribution! It took a while to merge it, but we want to make sure everything we merge is of good quality