-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add ClientOptions.SendDefaultPii #485
Conversation
|
Yes, it's a source of PII as well |
While the |
- fix: Scope values should not override Event values (#446) | ||
- feat: Extend User inteface by adding Data, Name and Segment (#483) | ||
- feat: Make maximum amount of spans configurable (#460) | ||
- feat: Add ClientOptions.SendDefaultPii #485 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Happy to see the Sentry Go SDK evolving!
One suggestion: initialisms like "PII" are spelled with a consistent case as per Go community conventions https://github.com/golang/go/wiki/CodeReviewComments#initialisms.
The option could be called ClientOptions.SendDefaultPII
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I opened #490
As
scope.SetUser
has to be explicitly called by the user, I did not add a check forSendDefaultPii
there.Closes #175