Skip to content

ref: add description that geo information is derived even if IP addre… #13828

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

Merged
merged 7 commits into from
Jun 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Sentry will redact arrays and literal values, but also entire objects. For examp
```javascript
credentials = {
username: 'jane',
cats: ['pancake', 'maple', 'hellboy']
cats: ['pancake', 'maple', 'hellboy'],
password: 'p4ssw0rd!',
lastLogin: 'yesterday',
...
Expand All @@ -56,6 +56,13 @@ Only a select number of fields are scrubbed. You can find a list of the fields t

In addition, we provide an [_Advanced Data Scrubbing_](/security-legal-pii/scrubbing//advanced-datascrubbing/) feature that allows more control over how filters are applied.

## Geographic Information

Geographic information is extracted from the user's IP address. This occurs even if the setting to stop storing IP addresses is turned on.

To scrub geo data, it's necessary to add an [_Advanced Data Scrubbing_](/security-legal-pii/scrubbing//advanced-datascrubbing/) rule.
For example, the rule `[Remove] [Anything] from [$user.geo.**]` will remove all geo information.

## Removing Data

If you’ve accidentally sent sensitive data to the server, you likely don't to want to leave it there. There are a few things to note in removal:
Expand Down
Loading